Keywords
typedef
typedef unsigned char BYTE;
BYTE b1, b2;
typedef struct {
const unsigned char *json;
size_t position;
} error;
error e1, e2;
typedef int * IntPtr;
IntPtr p1, p2, p3; // the type of p1, p2 and p3 are all the int *enum
union
volatile
register
Last updated