blob: fbee6effeab0183d02e8c39ab56a1c791eab8877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef ALGDS_TYPE_ALIAS_H_
#define ALGDS_TYPE_ALIAS_H_
#include <stdint.h>
#include <stdbool.h>
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
|