1 typedef signed char int8_t; 2 typedef signed short int16_t; 3 typedef signed int int32_t; 4 5 typedef unsigned char uint8_t; 6 typedef unsigned short uint16_t; 7 typedef unsigned int uint32_t; 8 9 #define NULL ((void*)0) 10 11 typedef enum { false, true } bool; 12 #include "../apf_defs.h" 13 #include "../apf_utils.h" 14 #include "../apf_dns.h" 15 #include "../apf_checksum.h" 16