blob: 0d4357bfc791a92b9db968f33fafdf10d8eb4993 [file] [log] [blame]
anjana_sreekumar@infosys.com991c2062020-01-08 11:42:57 +05301/*
2 * Copyright (c) 2003-2018, Great Software Laboratory Pvt. Ltd.
3 * Copyright (c) 2017 Intel Corporation
4 * Copyright (c) 2019, Infosys Ltd.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18#ifndef __JSON_DATA_H_
19#define __JSON_DATA_H_
20
21#include <stdio.h>
22#include <string.h>
23#include <stdlib.h>
24
25char *
26get_string_scalar(char *path);
27
28int
29get_ip_scalar(char *path);
30
31int
32get_int_scalar(char *path);
33
34int
35load_json(char *filename);
36
37#endif /**/