https://github.com/lzanatta/cvector
A (very) simple and tiny vector library
https://github.com/lzanatta/cvector
c vector
Last synced: 9 months ago
JSON representation
A (very) simple and tiny vector library
- Host: GitHub
- URL: https://github.com/lzanatta/cvector
- Owner: lzanatta
- License: mit
- Created: 2019-01-17T13:27:57.000Z (over 7 years ago)
- Default Branch: staging
- Last Pushed: 2019-08-27T02:14:54.000Z (almost 7 years ago)
- Last Synced: 2025-04-28T17:00:34.865Z (about 1 year ago)
- Topics: c, vector
- Language: C
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cvector
A simple vector implementation for the C language.
## Building shared lib and examples
**Work in progress**
Using `make` (or `mingw32-make` on Windows with MinGW-w64):
### Release builds:
```
build_folders make && make
```
Builds the `test_static` example.
### Debug builds:
```
build_folders make && make debug
```
Builds `test_static_debug` if you need to debug something.
Configuration files for working with Visual Studio Code (compiling, debugging, code completion) are also available.
Currently developed and tested on Windows 10 using MinGW-w64 (gcc 8.1.0 x86_64-posix-seh-rev0) only.
## License
[MIT](LICENSE)