From: Petri Lehtinen Date: Tue, 28 Jul 2009 08:36:53 +0000 (+0300) Subject: Add macro json_is_boolean X-Git-Tag: v1.0~12 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=jansson.git;a=commitdiff_plain;h=08d712d0382fe3b6340353b133f5c7f51e1946de Add macro json_is_boolean --- diff --git a/src/jansson.h b/src/jansson.h index 91bf553..e7bd238 100644 --- a/src/jansson.h +++ b/src/jansson.h @@ -38,6 +38,7 @@ typedef struct { #define json_is_number(json) (json_is_integer(json) || json_is_real(json)) #define json_is_true(json) (json && json_typeof(json) == JSON_TRUE) #define json_is_false(json) (json && json_typeof(json) == JSON_FALSE) +#define json_is_boolean(json) (jsin_is_true(json) || json_is_false(json)) #define json_is_null(json) (json && json_typeof(json) == JSON_NULL) /* construction, destruction, reference counting */