summaryrefslogtreecommitdiff
path: root/cscmd/error.h
blob: 866ec2a32b9b5d9c1525099f251e47afca9a5ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef    __ERROR_H
#define    __ERROR_H


#ifdef __cplusplus
extern "C" {
#endif

#define MAX_ERROR_MSG_SIZE  PATH_MAX

extern int errors;
extern int warnings;

extern void error( char *fmt, ... );
extern void warning( char *fmt, ... );
extern void no_space( void );
extern void unterminated_comment( void );


#ifdef __cplusplus
}
#endif

#endif  /* __ERROR_H */