13 lines
No EOL
208 B
C
13 lines
No EOL
208 B
C
#ifndef __CUTYPES_H
|
|
#define __CUTYPES_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef unsigned int uint;
|
|
#define CU_UINT_SIZE sizeof(uint)
|
|
|
|
typedef void* cu_ptr;
|
|
#define CU_PTR_SIZE sizeof(cu_ptr)
|
|
|
|
#endif |