mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-21 19:40:07 +00:00
3ab64bed39
unic is a small library of C functions that is currently written in plain C. It's purpose isn't to be fast, but "universal" - as in include as little architecture-specific code as possible. The old neatlibc still resides, but isn't being built. There is still more to do, including implementation of memory management, so keep it there for now. Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
19 lines
284 B
C
19 lines
284 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright (c) 2024, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
|
*/
|
|
|
|
#ifndef STDBOOL_H_ /* Include guard */
|
|
#define STDBOOL_H_
|
|
|
|
#define bool _Bool
|
|
#ifndef true
|
|
#define true 1
|
|
#endif
|
|
|
|
#ifndef false
|
|
#define false 0
|
|
#endif
|
|
|
|
#endif // STDBOOL_H_
|