Skip to content

Instantly share code, notes, and snippets.

View blakek's full-sized avatar
☦️

Blake Knight blakek

☦️
View GitHub Profile
@blakek
blakek / c_vector.c
Last active December 26, 2015 14:09 — forked from sshtmc/simple_c_vector.h
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include "c_vector.h"
// Return the vector size
size_t vector_size(vector *v)
{
return v->size;
}