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

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

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
```