forked from KolibriOS/kolibrios
Move NetSurf to /contrib folder
git-svn-id: svn://kolibrios.org@4364 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
39
contrib/network/netsurf/include/parserutils/utils/stack.h
Normal file
39
contrib/network/netsurf/include/parserutils/utils/stack.h
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* This file is part of LibParserUtils.
|
||||
* Licensed under the MIT License,
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* Copyright 2008 John-Mark Bell <jmb@netsurf-browser.org>
|
||||
*/
|
||||
|
||||
#ifndef parserutils_utils_stack_h_
|
||||
#define parserutils_utils_stack_h_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#include <parserutils/errors.h>
|
||||
#include <parserutils/functypes.h>
|
||||
|
||||
struct parserutils_stack;
|
||||
typedef struct parserutils_stack parserutils_stack;
|
||||
|
||||
parserutils_error parserutils_stack_create(size_t item_size, size_t chunk_size,
|
||||
parserutils_alloc alloc, void *pw, parserutils_stack **stack);
|
||||
parserutils_error parserutils_stack_destroy(parserutils_stack *stack);
|
||||
|
||||
parserutils_error parserutils_stack_push(parserutils_stack *stack,
|
||||
const void *item);
|
||||
parserutils_error parserutils_stack_pop(parserutils_stack *stack, void *item);
|
||||
|
||||
void *parserutils_stack_get_current(parserutils_stack *stack);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user