diff options
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/utils.h b/src/utils.h index 0796848..acb5f71 100644 --- a/src/utils.h +++ b/src/utils.h @@ -48,13 +48,15 @@ #include <stdint.h> -#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) +#include "pconfig.h" -void pt_log(int level, const char *fmt, ...); +#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) + +void pt_log(enum log_level level, const char * fmt, ...); double time_as_double(void); -int host_to_addr(const char *hostname, uint32_t *result); +int host_to_addr(const char * hostname, uint32_t * result); #if 0 void print_hexstr(unsigned char *buf, size_t siz); |