Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kneth/playwithc
- Owner: kneth
- License: gpl-3.0
- Created: 2022-09-05T17:01:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-22T17:22:53.000Z (about 2 years ago)
- Last Synced: 2024-11-07T15:51:26.512Z (2 months ago)
- Language: C
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 {} \;
```