Skip to content

Instantly share code, notes, and snippets.

@sshtmc
sshtmc / simple_c_vector.h
Created September 13, 2012 10:52
Simple vector-implementation in C
#ifndef __SIMPLECVECTOR_H__
#define __SIMPLECVECTOR_H__
#include <stdlib.h>
#include <assert.h>
#include <string.h>
typedef struct vector_ {
void** data;
size_t used_entries;