Hubbub
entities.h
Go to the documentation of this file.
1 /*
2  * This file is part of Hubbub.
3  * Licensed under the MIT License,
4  * http://www.opensource.org/licenses/mit-license.php
5  * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
6  */
7 
8 #ifndef hubbub_tokeniser_entities_h_
9 #define hubbub_tokeniser_entities_h_
10 
11 #include <inttypes.h>
12 
13 #include <hubbub/errors.h>
14 #include <hubbub/functypes.h>
15 
16 /* Step-wise search for an entity in the dictionary */
17 hubbub_error hubbub_entities_search_step(uint8_t c, uint32_t *result,
18  int32_t *context);
19 
20 #endif
hubbub_error hubbub_entities_search_step(uint8_t c, uint32_t *result, int32_t *context)
Step-wise search for an entity in the dictionary.
Definition: entities.c:103
hubbub_error
Definition: errors.h:18