diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-05-31 12:40:24 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-05-31 12:40:24 -0400 |
commit | 42be2e658987225458a98a54d5a9917c8d997457 (patch) | |
tree | 6d659b9d348d05226969c070eb1add020eb2671b /libdimension/array.c | |
parent | c9c85a530402541518dd585de682bb0ecdf7cf7b (diff) | |
download | dimension-42be2e658987225458a98a54d5a9917c8d997457.tar.xz |
array: Allow arrays to be allocated from pools.
Diffstat (limited to 'libdimension/array.c')
-rw-r--r-- | libdimension/array.c | 33 |
1 files changed, 33 insertions, 0 deletions
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 <tavianator@tavianator.com> * + * * + * 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 * + * <http://www.gnu.org/licenses/>. * + *************************************************************************/ + +/** + * @file + * Non-inline array functions. + */ + +#include "dimension.h" + +void +dmnsn_array_cleanup(void *ptr) +{ + dmnsn_array *array = ptr; + dmnsn_free(array->ptr); +} |