1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00
libkernaux/include/kernaux/stdlib.h

20 lines
294 B
C
Raw Normal View History

2020-11-29 19:00:47 -05:00
#ifndef KERNAUX_INCLUDED_STDLIB
#define KERNAUX_INCLUDED_STDLIB 1
2020-11-29 19:15:36 -05:00
#define KERNAUX_NULL ((void*)0)
2020-11-29 19:12:25 -05:00
#define KERNAUX_FALSE ((kernaux_bool)0)
#define KERNAUX_TRUE ((kernaux_bool)1)
2020-11-29 19:00:47 -05:00
#ifdef __cplusplus
extern "C" {
#endif
2020-11-29 19:12:25 -05:00
typedef unsigned char kernaux_bool;
2020-11-29 19:00:47 -05:00
#ifdef __cplusplus
}
#endif
#endif