
#ifndef _NETUTILS_H
#define _NETUTILS_H

#include <stdint.h>

uint64_t ntohll(uint64_t x);
uint64_t htonll(uint64_t x);

#endif

