https://github.com/devincarr/utils
A collection of useful C/C++ classes and functions
https://github.com/devincarr/utils
Last synced: 22 days ago
JSON representation
A collection of useful C/C++ classes and functions
- Host: GitHub
- URL: https://github.com/devincarr/utils
- Owner: DevinCarr
- License: mit
- Created: 2016-05-02T03:38:14.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-03T05:52:53.000Z (about 10 years ago)
- Last Synced: 2025-03-06T18:49:34.947Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# utils
A collection of useful C/C++ classes and functions
## Usage
Currently the C++ files all require at least a C++11 compiler
and have been tested to work with `g++` and `clang`.
## Files
### C
### C++
`semaphore.h/cpp`: A basic semphore class
`bounded_queue.h`: A bounded lock-safe queue
- Requires: `semaphore.h/cpp`
`circular_buffer.h`: A circular stack that will always accept
more elements and deleting ones off the end of the capacity.
## License
MIT - (view LICENSE for more information)