add missing copyright headers
[project/libubox.git] / blobmsg_json.h
1 /*
2  * blobmsg - library for generating/parsing structured blob messages
3  *
4  * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License version 2.1
8  * as published by the Free Software Foundation
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15
16 #ifndef __BLOBMSG_JSON_H
17 #define __BLOBMSG_JSON_H
18
19 #include <json/json.h>
20 #include <stdbool.h>
21
22 struct blob_buf;
23
24 bool blobmsg_add_json_element(struct blob_buf *b, const char *name, json_object *obj);
25 bool blobmsg_add_json_from_string(struct blob_buf *b, const char *str);
26
27 #endif