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

12 Commits   0 Branches   1 Tag
     5         kx 
     5         kx #ifndef    __WRAPPER_H
     5         kx #define    __WRAPPER_H
     5         kx 
     5         kx #ifdef __cplusplus
     5         kx extern "C" {
     5         kx #endif
     5         kx 
     5         kx 
     5         kx typedef void (*wrapper_errfunc)( const char *fmt, ... );
     5         kx 
     5         kx extern void wrapper_error( const char *fmt, ... ) __attribute__((format (printf,1,2)));
     5         kx extern wrapper_errfunc wrapper_fatal; /* Default Fatal Error Function == wrapper_error() */
     5         kx 
     5         kx 
     5         kx extern char *xstrdup( const char *str );
     5         kx extern void *xmalloc( size_t size );
     5         kx extern void *xrealloc( void *ptr, size_t size );
     5         kx 
     5         kx extern int xopen( const char *path, int oflag, ... );
     5         kx extern ssize_t xread(int fd, void *buf, size_t len);
     5         kx extern ssize_t xwrite( int fd, const void *buf, size_t len );
     5         kx 
     5         kx extern ssize_t read_in_full( int fd, void *buf, size_t count );
     5         kx extern ssize_t write_in_full( int fd, const void *buf, size_t count );
     5         kx 
     5         kx extern int xdup( int fd );
     5         kx 
     5         kx extern FILE *xfopen( const char *path, const char *mode );
     5         kx extern FILE *xfdopen( int fd, const char *mode );
     5         kx 
     5         kx 
     5         kx 
     5         kx #ifdef __cplusplus
     5         kx }
     5         kx #endif
     5         kx 
     5         kx #endif  /* __WRAPPER_H */