blob: 8ff69dd66d250831c99414968490d4091c75e884 (
plain)
1
2
3
4
5
6
7
|
#include <nnwt/file.h>
#include <jansson.h>
bool nn_file_open_and_read_wholly(str *path, str *out, bool lock);
bool nn_file_open_and_replace(str *path, str *buf, bool lock);
json_t *nn_file_open_as_json(str *path);
bool nn_dump_json_and_decref(str *path, json_t *root);
|