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    __FATAL_H
05d292b2 (kx 2023-03-24 03:51:10 +0300  3) #define    __FATAL_H
05d292b2 (kx 2023-03-24 03:51:10 +0300  4) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  5) #define HTTP_ERRMSG_SIZE  4096
05d292b2 (kx 2023-03-24 03:51:10 +0300  6) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  7) #ifdef __cplusplus
05d292b2 (kx 2023-03-24 03:51:10 +0300  8) extern "C" {
05d292b2 (kx 2023-03-24 03:51:10 +0300  9) #endif
05d292b2 (kx 2023-03-24 03:51:10 +0300 10) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 11) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 12) extern void fatal( const char *fmt, ... ) __attribute__((format (printf,1,2)));
05d292b2 (kx 2023-03-24 03:51:10 +0300 13) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 14) extern void fatal_json( const char *fmt, ... ) __attribute__((format (printf,1,2)));
05d292b2 (kx 2023-03-24 03:51:10 +0300 15) extern void fatal_html( const char *fmt, ... ) __attribute__((format (printf,1,2)));
05d292b2 (kx 2023-03-24 03:51:10 +0300 16) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 17) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 18) #ifdef __cplusplus
05d292b2 (kx 2023-03-24 03:51:10 +0300 19) }
05d292b2 (kx 2023-03-24 03:51:10 +0300 20) #endif
05d292b2 (kx 2023-03-24 03:51:10 +0300 21) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 22) #endif  /* __FATAL_H */