aboutsummaryrefslogtreecommitdiff
path: root/src/dynalloc.h
blob: 852f608cd8425130f201c481afd6ae653ce6b1e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * src/dynalloc.h
 * (c) 2020 Jonas Gunz <himself@jonasgunz.de>
 * License: MIT
*/
#pragma once

#include <stdlib.h>

void** dynalloc_2d_array ( unsigned int _x, unsigned int _y, unsigned int _sizeof );

void dynalloc_2d_array_free ( unsigned int _x, unsigned int _y, void** _array );