Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kneth/playwithc

Play with C idioms and tools
https://github.com/kneth/playwithc

Last synced: 13 days ago
JSON representation

Play with C idioms and tools

Awesome Lists containing this project

README

        

# Play with C idioms and tools

## Building

```sh
mkdir build
cd build
cmake ..
make
```

## Formatting code

```sh
find src -name '*.c' -o -name '*.h' -exec clang-format -i {} \;
```