telodendria/src/include/Json.h
Jordan Bancino 3437c5db2c Format headers as well.
indent(1) does a weird thing with prototype functions, but it's good
enough for me, as long as it's consistent.
2022-07-25 15:25:06 -04:00

72 lines
1.1 KiB
C

#ifndef TELODENDRIA_JSON_H
#define TELODENDRIA_JSON_H
#include <HashMap.h>
#include <Array.h>
typedef enum JsonType
{
JSON_OBJECT,
JSON_ARRAY,
JSON_STRING,
JSON_INTEGER,
JSON_FLOAT,
JSON_BOOLEAN,
JSON_NULL
} JsonType;
typedef struct JsonValue
{
JsonType type;
union as
{
HashMap *object;
Array *array;
char *string;
int64_t integer;
double floating;
int boolean:1;
};
} JsonValue;
extern JsonType
JsonValueType(JsonValue * value);
extern JsonValue *
JsonValueObject(HashMap * object);
extern HashMap *
JsonValueAsObject(JsonValue * value);
extern JsonValue *
JsonValueArray(Array * array);
extern Array *
JsonValueAsArray(JsonValue * value);
extern JsonValue *
JsonValueString(char *string);
extern JsonValue *
JsonValueInteger(int64_t integer);
extern JsonValue *
JsonValueFloat(double floating);
extern JsonValue *
JsonValueBoolean(int boolean);
extern JsonValue *
JsonValueNull(void);
extern void *
JsonValueFree(JsonValue * value);
extern char *
JsonEncode(HashMap * object);
extern HashMap *
JsonDecode(char *string);
#endif