summaryrefslogtreecommitdiff
path: root/lib/json.h
diff options
context:
space:
mode:
authorwhitespace / reindent <invalid@invalid.invalid>2017-08-09 11:49:42 +0200
committerwhitespace / reindent <invalid@invalid.invalid>2017-08-09 12:03:17 +0200
commitac4d0be5874fafd14212d6007fff7495edc9b152 (patch)
tree5e2f0d3189de928c849f9983406389ade3b098cb /lib/json.h
parent76a86854181c27819e5cf71b12ae1fa5ccd9e02a (diff)
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'` Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/json.h')
-rw-r--r--lib/json.h27
1 files changed, 13 insertions, 14 deletions
diff --git a/lib/json.h b/lib/json.h
index 7e98614280..fdc2e0cbbc 100644
--- a/lib/json.h
+++ b/lib/json.h
@@ -33,25 +33,24 @@
*/
#define json_object_to_json_string_ext(A, B) json_object_to_json_string (A)
-extern int json_object_object_get_ex(struct json_object *obj,
- const char *key,
- struct json_object **value);
+extern int json_object_object_get_ex(struct json_object *obj, const char *key,
+ struct json_object **value);
#endif
#include "command.h"
extern int use_json(const int argc, struct cmd_token *argv[]);
-extern void json_object_string_add(struct json_object* obj, const char *key,
- const char *s);
-extern void json_object_int_add(struct json_object* obj, const char *key,
- int32_t i);
-extern void json_object_long_add(struct json_object* obj, const char *key,
- int64_t i);
-extern void json_object_boolean_false_add(struct json_object* obj,
- const char *key);
-extern void json_object_boolean_true_add(struct json_object* obj,
- const char *key);
-extern struct json_object* json_object_lock(struct json_object *obj);
+extern void json_object_string_add(struct json_object *obj, const char *key,
+ const char *s);
+extern void json_object_int_add(struct json_object *obj, const char *key,
+ int32_t i);
+extern void json_object_long_add(struct json_object *obj, const char *key,
+ int64_t i);
+extern void json_object_boolean_false_add(struct json_object *obj,
+ const char *key);
+extern void json_object_boolean_true_add(struct json_object *obj,
+ const char *key);
+extern struct json_object *json_object_lock(struct json_object *obj);
extern void json_object_free(struct json_object *obj);
#define JSON_STR "JavaScript Object Notation\n"