12 lines
160 B
C
12 lines
160 B
C
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
void print_usage(const char *prog_name);
|
|
|
|
void log_info(const char *fmt, ...);
|
|
|
|
void log_error(const char *fmt, ...);
|
|
|
|
#endif
|