cScm Configuration Daemon

cScm – is a tool to convert SCM configuration files into binary format and store its in shared memory for reading by cSvn-ui and cGit-ui CGI scripts

12 Commits   0 Branches   1 Tag
     5         kx 
     5         kx #ifndef    __ERROR_H
     5         kx #define    __ERROR_H
     5         kx 
     5         kx 
     5         kx #ifdef __cplusplus
     5         kx extern "C" {
     5         kx #endif
     5         kx 
     5         kx #define MAX_ERROR_MSG_SIZE  PATH_MAX
     5         kx 
     5         kx extern int errors;
     5         kx extern int warnings;
     5         kx 
     5         kx extern void error( char *fmt, ... );
     5         kx extern void warning( char *fmt, ... );
     5         kx extern void no_space( void );
     5         kx extern void unterminated_comment( void );
     5         kx 
     5         kx 
     5         kx #ifdef __cplusplus
     5         kx }
     5         kx #endif
     5         kx 
     5         kx #endif  /* __ERROR_H */