ti83-sdk/lib83/stddef.h

24 lines
368 B
C
Raw Normal View History

2023-10-08 12:39:40 +00:00
#ifndef _STDDEF_H
#define _STDDEF_H
2023-10-08 16:20:19 +00:00
#define NULL ((void *) 0)
2023-10-08 12:39:40 +00:00
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long uint32_t;
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed long int32_t;
typedef uint16_t size_t;
typedef int16_t ssize_t;
typedef int16_t ptrdiff_t;
#define true 1
#define false 0
#endif