summaryrefslogtreecommitdiff
path: root/include/parserutils/functypes.h
blob: 703a329f62466c4bd6c9d89530778e221451f81c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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 <jmb@netsurf-browser.org>
 */

#ifndef parserutils_functypes_h_
#define parserutils_functypes_h_

#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>

#include <parserutils/types.h>

/* Type of allocation function for parserutils */
typedef void *(*parserutils_alloc)(void *ptr, size_t size, void *pw);

#endif