14 lines
210 B
C
14 lines
210 B
C
#ifndef H_AUDIT
|
|
#define H_AUDIT
|
|
|
|
#define BUF_SIZE_AUDIT 256
|
|
#define TRUE 0
|
|
#define FALSE 1
|
|
|
|
struct st_audit{
|
|
char result[BUF_SIZE_AUDIT];
|
|
int audit; /* TRUE or FALSE */
|
|
};
|
|
|
|
#endif
|