cGit-UI for Git Repositories

cGit-UI – is a web interface for Git Repositories. cGit CGI script is writen in C and therefore it's fast enough

3 Commits   0 Branches   1 Tag
05d292b2 (kx 2023-03-24 03:51:10 +0300  1) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  2) #ifndef    __HTML_H
05d292b2 (kx 2023-03-24 03:51:10 +0300  3) #define    __HTML_H
05d292b2 (kx 2023-03-24 03:51:10 +0300  4) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  5) #ifdef __cplusplus
05d292b2 (kx 2023-03-24 03:51:10 +0300  6) extern "C" {
05d292b2 (kx 2023-03-24 03:51:10 +0300  7) #endif
05d292b2 (kx 2023-03-24 03:51:10 +0300  8) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  9) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 10) typedef void (*html_errfunc)( const char *fmt, ... );
05d292b2 (kx 2023-03-24 03:51:10 +0300 11) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 12) extern void html_error( const char *fmt, ... ) __attribute__((format (printf,1,2)));
05d292b2 (kx 2023-03-24 03:51:10 +0300 13) extern html_errfunc html_fatal; /* Default Fatal Error Function == html_error() */
05d292b2 (kx 2023-03-24 03:51:10 +0300 14) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 15) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 16) extern void html_raw( const char *data, size_t size );
05d292b2 (kx 2023-03-24 03:51:10 +0300 17) extern void html( const char *txt );
05d292b2 (kx 2023-03-24 03:51:10 +0300 18) extern void htmlf( const char *format, ... ) __attribute__((format (printf,1,2)));
05d292b2 (kx 2023-03-24 03:51:10 +0300 19) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 20) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 21) #ifdef __cplusplus
05d292b2 (kx 2023-03-24 03:51:10 +0300 22) }
05d292b2 (kx 2023-03-24 03:51:10 +0300 23) #endif
05d292b2 (kx 2023-03-24 03:51:10 +0300 24) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 25) #endif  /* __HTML_H */