/* * This file is part of LibParserUtils. * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2007-8 John-Mark Bell */ #ifndef parserutils_functypes_h_ #define parserutils_functypes_h_ #include #include #include #include /* Type of allocation function for parserutils */ typedef void *(*parserutils_alloc)(void *ptr, size_t size, void *pw); #endif