Skip to content

Instantly share code, notes, and snippets.

@notnullnotvoid
notnullnotvoid / List.h
Created May 8, 2018 15:19
example of simple type generics in C
#ifndef LIST_H
#define LIST_H
#define LIST IntList
#define TYPE int
#include "ListImpl.h"
#undef LIST
#undef TYPE
#define LIST Vec2List