cvector/README.org

11 lines
412 B
Org Mode
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#+TITLE: CVec: A Simple Vector Implementation in C
#+AUTHOR: Lucien Cartier-Tilet
#+EMAIL: lucien@phundrak.com
#+DATE: 2020-10-03
* What is this project?
CVec is a simple Vector implementation in C, inspired by C++s ~std::vector~
and Rusts ~std::vec::Vec~. It doesnt try to be on par with these in terms of
features, but simply tries to provide basic features most people will find
useful.