From 92d289f5d366058284b69180c3c32ea10ef51610 Mon Sep 17 00:00:00 2001 From: Eric Haszlakiewicz Date: Sat, 9 Feb 2013 16:18:05 -0600 Subject: [PATCH] Add a comment briefly describing json_object_object_length() --- json_object.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/json_object.h b/json_object.h index 336ce96a..c97850a2 100644 --- a/json_object.h +++ b/json_object.h @@ -215,6 +215,9 @@ extern struct json_object* json_object_new_object(void); */ extern struct lh_table* json_object_get_object(struct json_object *obj); +/** Get the size of an object in terms of the number of fields it has. + * @param obj the json_object whose length to return + */ extern int json_object_object_length(struct json_object* obj); /** Add an object field to a json_object of type json_type_object -- 2.47.2