From da16febcd7e453e26fc7eba5c33afe27f00d1134 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Wed, 30 Jul 2008 19:59:38 +0000 Subject: Make parserutils_dict_entry public. Add basic implementations of a stack and a vector. svn path=/trunk/libparserutils/; revision=4824 --- include/parserutils/utils/stack.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 include/parserutils/utils/stack.h (limited to 'include/parserutils/utils/stack.h') diff --git a/include/parserutils/utils/stack.h b/include/parserutils/utils/stack.h new file mode 100644 index 0000000..e9fad5a --- /dev/null +++ b/include/parserutils/utils/stack.h @@ -0,0 +1,29 @@ +/* + * This file is part of LibParserUtils. + * Licensed under the MIT License, + * http://www.opensource.org/licenses/mit-license.php + * Copyright 2008 John-Mark Bell + */ + +#ifndef parserutils_utils_stack_h_ +#define parserutils_utils_stack_h_ + +#include + +#include +#include + +struct parserutils_stack; +typedef struct parserutils_stack parserutils_stack; + +parserutils_stack *parserutils_stack_create(size_t item_size, size_t chunk_size, + parserutils_alloc alloc, void *pw); +void parserutils_stack_destroy(parserutils_stack *stack); + +parserutils_error parserutils_stack_push(parserutils_stack *stack, void *item); +parserutils_error parserutils_stack_pop(parserutils_stack *stack, void *item); + +void *parserutils_stack_get_current(parserutils_stack *stack); + +#endif + -- cgit v1.2.3