rcx

library of miscellaneous bits of C code
git clone git://git.rr3.xyz/rcx
Log | Files | Refs | README | LICENSE

commit 376e44db258446d03fe5dfe9d6facecbf28323c0
parent f189dfbe6b6b7d55bb49018bb3d2b8ea83d58e25
Author: robert <robertrussell.72001@gmail.com>
Date:   Fri, 19 Aug 2022 18:42:12 -0700

Add schar typedef

For completeness

Diffstat:
Minc/cext/def.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/inc/cext/def.h b/inc/cext/def.h @@ -26,6 +26,7 @@ #define SHORT_MAX SHRT_MAX #define USHORT_MAX USHRT_MAX +typedef signed char schar; typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint;