added stack datatype to std
This commit is contained in:
parent
875b69c407
commit
c3b4a4e209
5 changed files with 145 additions and 0 deletions
18
include/arc/std/bool.h
Normal file
18
include/arc/std/bool.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef ARC_STD_BOOL_H_
|
||||
#define ARC_STD_BOOL_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#define ARC_Bool bool
|
||||
#define ARC_True true
|
||||
#define ARC_False false
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif //ARC_STD_BOOL_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue