Searched refs:json_typeof (Results 1 - 5 of 5) sorted by relevance

/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/src/
H A Djansson.h74 #define json_typeof(json) ((json)->type) macro
75 #define json_is_object(json) ((json) && json_typeof(json) == JSON_OBJECT)
76 #define json_is_array(json) ((json) && json_typeof(json) == JSON_ARRAY)
77 #define json_is_string(json) ((json) && json_typeof(json) == JSON_STRING)
78 #define json_is_integer(json) ((json) && json_typeof(json) == JSON_INTEGER)
79 #define json_is_natural(json) ((json) && json_typeof(json) == JSON_NATURAL)
80 #define json_is_real(json) ((json) && json_typeof(json) == JSON_REAL)
83 #define json_is_true(json) ((json) && json_typeof(json) == JSON_TRUE)
84 #define json_is_false(json) ((json) && json_typeof(json) == JSON_FALSE)
87 #define json_is_null(json) ((json) && json_typeof(jso
[all...]
H A Ddump.c197 switch(json_typeof(json)) {
H A Dvalue.c960 if(json_typeof(json1) != json_typeof(json2))
H A Dpack_unpack.c47 #define type_name(x) type_names[json_typeof(x)]
/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/test/suites/api/
H A Dtest_simple.c36 if(json_typeof(value) != JSON_INTEGER)
37 fail("json_typeof failed");

Completed in 82 milliseconds