13 lines
233 B
C
13 lines
233 B
C
/*
|
|
This software is licensed under GPL-3, as shown in the file LICENSE
|
|
Author: Linux Gruppe IRB
|
|
Copyright: Linux Gruppe IRB, 2025
|
|
*/
|
|
|
|
#ifndef _JSON_H
|
|
#define _JSON_H
|
|
|
|
char *json2txt(char *json);
|
|
|
|
#endif
|