From 42be2e658987225458a98a54d5a9917c8d997457 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 31 May 2014 12:40:24 -0400 Subject: array: Allow arrays to be allocated from pools. --- libdimension/array.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 libdimension/array.c (limited to 'libdimension/array.c') diff --git a/libdimension/array.c b/libdimension/array.c new file mode 100644 index 0000000..deea035 --- /dev/null +++ b/libdimension/array.c @@ -0,0 +1,33 @@ +/************************************************************************* + * Copyright (C) 2014 Tavian Barnes * + * * + * This file is part of The Dimension Library. * + * * + * The Dimension Library is free software; you can redistribute it and/ * + * or modify it under the terms of the GNU Lesser General Public License * + * as published by the Free Software Foundation; either version 3 of the * + * License, or (at your option) any later version. * + * * + * The Dimension Library is distributed in the hope that it will be * + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this program. If not, see * + * . * + *************************************************************************/ + +/** + * @file + * Non-inline array functions. + */ + +#include "dimension.h" + +void +dmnsn_array_cleanup(void *ptr) +{ + dmnsn_array *array = ptr; + dmnsn_free(array->ptr); +} -- cgit v1.2.3