Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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?

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!