#ifndef __UTILS_H
#define __UTILS_H

#include <netinet/in.h>

void u_inet_ntoa(in_addr_t, char *str);
int u_readlong(long int *dst, const char *src, long int min, long int max);

#endif