forked from sysprog21/lab0-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.h
61 lines (41 loc) · 1.48 KB
/
report.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef LAB0_REPORT_H
#define LAB0_REPORT_H
#include <stdarg.h>
#include <stdbool.h>
/* Default reporting level. Must recompile when change */
#ifndef RPT
#define RPT 2
#endif
/* Ways to report interesting behavior and errors */
/* Things to report */
typedef enum { MSG_WARN, MSG_ERROR, MSG_FATAL } message_t;
/* Buffer sizes */
#define MAX_CHAR 512
bool set_logfile(char *file_name);
extern int verblevel;
void set_verblevel(int level);
/* Error messages */
void report_event(message_t msg, char *fmt, ...);
/* Report useful information */
void report(int verblevel, char *fmt, ...);
/* Like report, but without return character */
void report_noreturn(int verblevel, char *fmt, ...);
/* Attempt to call malloc. Fail when returns NULL */
void *malloc_or_fail(size_t bytes, char *fun_name);
/* Attempt to call calloc. Fail when returns NULL */
void *calloc_or_fail(size_t cnt, size_t bytes, char *fun_name);
/* Attempt to save string. Fail when malloc returns NULL */
char *strsave_or_fail(char *s, char *fun_name);
/* Free block, as from malloc, or strsave */
void free_block(void *b, size_t len);
/* Free array, as from calloc */
void free_array(void *b, size_t cnt, size_t bytes);
/* Free string saved by strsave_or_fail */
void free_string(char *s);
/** Time measurement. **/
/* Time counted as fp number in seconds */
void init_time(double *timep);
/* Compute time since last call with this timer
and reset timer */
double delta_time(double *timep);
#endif /* LAB0_REPORT_H */