bama4 / simple-http-server

A simple lightweight HTTP server in C
0 stars 0 forks source link

Create generic resizeable array implementation #12

Closed garfr closed 3 years ago

garfr commented 3 years ago

Description

The vector is similar to the std::vector implementation in the C++ STL. The key difference from other C vector implementation is that it should hold the actual contents of the data its stores, instead of storing pointers to the data. This allows the data to be accessed as the contiguous array it is and allows for better cache locality.

Requirements