misc.h
Raw
1#ifndef MISC_H
2#define MISC_H
3#include <stdint.h>
4#include <string.h>
5
6#ifdef __unix__
7 #include <unistd.h>
8#endif
9#ifdef _WIN32
10 #include <windows.h>
11#endif
12
13void sleep_ms(unsigned int milliseconds);
14uint32_t ntoh32(uint32_t const net);
15#endif //MISC_H
16