Hubbub
errors.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_errors_h_
9 #define hubbub_errors_h_
10 
11 #ifdef __cplusplus
12 extern "C"
13 {
14 #endif
15 
16 #include <stddef.h>
17 
18 typedef enum hubbub_error {
19  HUBBUB_OK = 0,
30 
32 } hubbub_error;
33 
34 /* Convert a hubbub error value to a string */
35 const char *hubbub_error_to_string(hubbub_error error);
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif
42 
tokenisation is paused
Definition: errors.h:22
const char * hubbub_error_to_string(hubbub_error error)
Convert a hubbub error code to a string.
Definition: errors.c:18
hubbub_error
Definition: errors.h:18
No error.
Definition: errors.h:19