summaryrefslogtreecommitdiff
path: root/src/utils/charset_errors.h
blob: 7571c066e3ef01a0ea93ce750719c0cc532a17bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * This file is part of libdom.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef dom_utils_charset_errors_h_
#define dom_utils_charset_errors_h_

typedef enum {
	CHARSET_OK,		/**< No error */
	CHARSET_BADPARM,	/**< Bad parameters to argument */
	CHARSET_NEEDDATA,	/**< Insufficient data for operation */
	CHARSET_INVALID		/**< Invalid input data */
} charset_error;

#endif