#ifndef ALGDS_TYPE_ALIAS_H_ #define ALGDS_TYPE_ALIAS_H_ #include #include typedef bool Bool; typedef int Int; typedef long long Long; typedef unsigned int UInt; typedef unsigned long long ULong; typedef char Char; typedef float Float; typedef double Double; typedef const char *String; typedef const void *VoidPtr; #endif