28 lines
426 B
Markdown
28 lines
426 B
Markdown
# RefCount
|
|
|
|
RefCount is a reference counting (thus the name) and garbage collection library
|
|
written in standard C99.
|
|
|
|
### Building
|
|
|
|
You can build using:
|
|
```sh
|
|
cmake -B build
|
|
make -C build
|
|
```
|
|
|
|
You can then run tests using:
|
|
```sh
|
|
make -C build test
|
|
```
|
|
|
|
### Documentation
|
|
|
|
You can generate documentation with:
|
|
```
|
|
doxygen
|
|
```
|
|
|
|
You can look in the `test/` directory for some examples of the various features
|
|
of RefCount in use.
|