cutil/cutypes.h
mykola2312 688a343a92 array
2022-04-17 16:19:49 +03:00

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