json-gen-c  0.1.5
json-gen-c generate C code for json manipulation
error_codes.h
Go to the documentation of this file.
1
6#ifndef ERROR_CODES_H
7#define ERROR_CODES_H
8
25
31const char* json_gen_error_string(json_gen_error_t error_code);
32
33#endif /* ERROR_CODES_H */
json_gen_error_t
Error codes for json-gen-c operations.
Definition error_codes.h:12
@ JSON_GEN_ERROR_PARSE
Definition error_codes.h:17
@ JSON_GEN_ERROR_BUFFER_OVERFLOW
Definition error_codes.h:19
@ JSON_GEN_ERROR_THREAD_SAFETY
Definition error_codes.h:22
@ JSON_GEN_ERROR_FILE_IO
Definition error_codes.h:16
@ JSON_GEN_ERROR_INVALID_PARAM
Definition error_codes.h:18
@ JSON_GEN_ERROR_BOUNDS
Definition error_codes.h:23
@ JSON_GEN_SUCCESS
Definition error_codes.h:13
@ JSON_GEN_ERROR_MEMORY
Definition error_codes.h:15
@ JSON_GEN_ERROR_GENERAL
Definition error_codes.h:14
@ JSON_GEN_ERROR_FORMAT
Definition error_codes.h:20
@ JSON_GEN_ERROR_NOT_FOUND
Definition error_codes.h:21
const char * json_gen_error_string(json_gen_error_t error_code)
Get error message string for error code.
Definition error_codes.c:8