1#ifndef HOWL_H
2#define HOWL_H
3
4#include <stdint.h>
5
6#define SOCK_PATH "/tmp/.howl.sock"
7#define MAXSIZE 256
8
9extern void _inf(const char *, ...);
10extern void _wrn(const char *, ...);
11extern void _err(int, const char *, ...);
12
13#endif /* HOWL_H */