Skip to content

Instantly share code, notes, and snippets.

@Ian-Marco-Moffett
Ian-Marco-Moffett / vector.h
Last active December 14, 2022 01:54
Single header vector lib.
#ifndef VECTOR_H_
#define VECTOR_H_
#include <stdint.h>
#include <stddef.h>
#include <stdlib.h>
#define VECTOR_INIT {0}