共有 0 个贴子
没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > C Vector |
C Vector
|
1 | 0 | 54 |
贡献者 | 讨论 | 代码提交 |
A C vector library similar to the C++ STL vector. It is written in ANSI C (C89).
It has built in support for int, double, char* types and a void vector that can handle any type (stores it in an internal byte array) and provides constructor/destructor like features.
It also has a template and python script for generating vectors for other specific non-pointer types if you don't want to use the generic void vector. See the documentation (www.robertwinkler.com/Projects/cvector) and the testing code for more information and example usage.