falcotcp 0.2.0

TCP server/client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#ifndef NUMBERS_H
#define NUMBERS_H

#include <stdint.h>
#include <sys/types.h>
typedef u_int64_t u64;
typedef size_t usize;
typedef u_int8_t u8;
typedef u_int32_t u32;
typedef u_int16_t u16;
typedef int32_t i32;
typedef int64_t i64;
typedef int16_t i16;
typedef char i8;


#endif