CryptoDit/audit/audit.h
2026-01-31 16:45:53 +01:00

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