Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skelebyte/c-bool
Need booleans?
https://github.com/skelebyte/c-bool
bool boolean c variable
Last synced: 15 days ago
JSON representation
Need booleans?
- Host: GitHub
- URL: https://github.com/skelebyte/c-bool
- Owner: Skelebyte
- License: cc0-1.0
- Created: 2024-10-23T12:43:24.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2024-10-27T05:35:36.000Z (17 days ago)
- Last Synced: 2024-10-27T06:34:00.964Z (17 days ago)
- Topics: bool, boolean, c, variable
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C-Bool
**Need bools?**
## C-Bool has got your back!
With this super simple and probably useless 3 line snippet!``` c
typedef int bool;
#define true 1
#define false 0
```It's crazy just how simple it is!
> [!TIP]
> Just copy and paste it or download `Bool.h` and include it in your code!