https://github.com/jnndrc/jyggalog
A simple logging library made in C. Logical and Ordered
https://github.com/jnndrc/jyggalog
c logging
Last synced: 11 months ago
JSON representation
A simple logging library made in C. Logical and Ordered
- Host: GitHub
- URL: https://github.com/jnndrc/jyggalog
- Owner: JnnDrc
- License: mit
- Created: 2025-04-29T02:08:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-29T02:16:07.000Z (about 1 year ago)
- Last Synced: 2025-04-29T03:30:38.761Z (about 1 year ago)
- Topics: c, logging
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jyggalog
A simple logging library made in C, logical and ordered
## Build
### dependencies
1. GNU Make (or just a c compiler)
2. GCC (or any c compiler)
### Building
1. clone repo: `git clone https://github.com/JnnDrc/jyggalog.git`
2. cd jyggalog
3. make: `make`
will output libjl.a
you can use `make debug` to produce the unoptimized and with debug symbols version libjl-g.a
## USE
include the header and link the lib with your program
```c
// lala.c
#include
// ...
```
```sh
gcc lala.c -o lala -L./lib -ljl
```