#pragma once #define true 0x1 #define false 0x0 #define ENDL "\r\n" #define NAME_MAX 255 #define PATH_MAX 4096 typedef long unsigned int size_t; typedef unsigned char uint8_t; typedef int int32_t; typedef unsigned int uint32_t; typedef long long int int64_t; typedef unsigned long long int uint64_t;