blob: 08e1ffe7caaa0ce327fe1412298ab19ad5558fc5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# extlib
Personal library with some handy utilities
## building
```
make
make extlib.pc
make install
```
## using
simply include `extlib.h`
to use `malloc_secure` and `free_secure` `USE_SECURE_MEM` has to be defined.
to use `rrmdir` `_XOPEN_SOURCE` has to be defined as `500`
|