mirror of
https://github.com/json-c/json-c.git
synced 2026-03-13 18:19:06 +08:00
Fixes
json_util.c:63:35: error: a function declaration without a prototype is deprecated in all versions of C [-We
rror,-Wstrict-prototypes]
const char *json_util_get_last_err()
^
void
Signed-off-by: Khem Raj <raj.khem@gmail.com>
46 lines
810 B
C
46 lines
810 B
C
#ifdef NDEBUG
|
|
#undef NDEBUG
|
|
#endif
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "json.h"
|
|
#include "json_tokener.h"
|
|
|
|
static void test_case_parse(void);
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
MC_SET_DEBUG(1);
|
|
|
|
test_case_parse();
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* make sure only lowercase forms are parsed in strict mode */
|
|
static void test_case_parse(void)
|
|
{
|
|
struct json_tokener *tok;
|
|
json_object *new_obj;
|
|
|
|
tok = json_tokener_new();
|
|
json_tokener_set_flags(tok, JSON_TOKENER_STRICT);
|
|
|
|
new_obj = json_tokener_parse_ex(tok, "True", 4);
|
|
assert(new_obj == NULL);
|
|
|
|
new_obj = json_tokener_parse_ex(tok, "False", 5);
|
|
assert(new_obj == NULL);
|
|
|
|
new_obj = json_tokener_parse_ex(tok, "Null", 4);
|
|
assert(new_obj == NULL);
|
|
|
|
printf("OK\n");
|
|
|
|
json_tokener_free(tok);
|
|
}
|