diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-05-27 18:07:34 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-05-27 18:07:34 +0200 |
commit | ed456a32ffe6fea0cb52b5184a00a14cb0059f4a (patch) | |
tree | 8970d63b89090e8eb778d97043af9b74999828ae /src/utils.h | |
parent | a0fca977bf366b64a5cd3e1c71fce14a93b8a44c (diff) |
splitted bigfat anon enum in pconfig.h into multiple smaller ones hoping to improve readability
* clang-format headers
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
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); |