c_errors.h 2.5 KB

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