FOSSology  4.4.0
Open Source License Compliance by Open Source Software
json_writer.h
Go to the documentation of this file.
1 /*
2  SPDX-FileCopyrightText: © 2019 Siemens AG
3  Author: Gaurav Mishra <mishra.gaurav@siemens.com>
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
13 #ifndef _JSON_WRITER_H_
14 #define _JSON_WRITER_H_
15 
19 void writeJson();
20 
30 char *unescapePathSeparator(const char* json);
31 
35 void initializeJson();
36 
40 void destroyJson();
41 
42 
43 #endif /* _JSON_WRITER_H_ */
void writeJson()
Write the scan output as a JSON.
Definition: json_writer.c:13
void initializeJson()
Definition: json_writer.c:100
char * unescapePathSeparator(const char *json)
Unescape the path separator from JSON.
Definition: json_writer.c:59
void destroyJson()
Definition: json_writer.c:109