1 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
\r
2 * This file is part of clib library
\r
3 * Copyright (C) 2011 Avinash Dongre ( dongre.avinash@gmail.com )
\r
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
\r
6 * of this software and associated documentation files (the "Software"), to deal
\r
7 * in the Software without restriction, including without limitation the rights
\r
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
\r
9 * copies of the Software, and to permit persons to whom the Software is
\r
10 * furnished to do so, subject to the following conditions:
\r
12 * The above copyright notice and this permission notice shall be included in
\r
13 * all copies or substantial portions of the Software.
\r
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
\r
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
\r
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
\r
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
\r
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
\r
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
\r
22 ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
\r
24 #ifndef _C_ERRORS_H_
\r
25 #define _C_ERRORS_H_
\r
27 /* ------------------------------------------------------------------------*/
\r
28 /* C O M M O N E R R O R C O D E */
\r
29 /* ------------------------------------------------------------------------*/
\r
30 #define CLIB_ERROR_SUCCESS 0
\r
31 #define CLIB_ERROR_ERROR 1
\r
32 #define CLIB_ERROR_MEMORY 2
\r
33 #define CLIB_ELEMENT_RETURN_ERROR 3
\r
34 /* ------------------------------------------------------------------------*/
\r
35 /* D Y N A M I C A R R A Y E R R O R C O D E S */
\r
36 /* ------------------------------------------------------------------------*/
\r
37 #define CLIB_ARRAY_NOT_INITIALIZED 101
\r
38 #define CLIB_ARRAY_INDEX_OUT_OF_BOUND 102
\r
39 #define CLIB_ARRAY_INSERT_FAILED 103
\r
41 #define CLIB_DEQUE_NOT_INITIALIZED 201
\r
42 #define CLIB_DEQUE_INDEX_OUT_OF_BOUND 202
\r
44 #define CLIB_RBTREE_NOT_INITIALIZED 401
\r
45 #define CLIB_RBTREE_KEY_DUPLICATE 401
\r
46 #define CLIB_RBTREE_KEY_NOT_FOUND 402
\r
48 #define CLIB_SET_NOT_INITIALIZED 501
\r
49 #define CLIB_SET_INVALID_INPUT 502
\r
51 #define CLIB_MAP_NOT_INITIALIZED 501
\r
52 #define CLIB_MAP_INVALID_INPUT 502
\r
54 #define CLIB_SLIST_INSERT_FAILED 601
\r