aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
blob: f3c92c3b244ad9b6b1d658e590dc90e06e7bfb22 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef NET_H
#define NET_H

#include <json.h>

size_t WriteMemoryCallback(void*, size_t, size_t, void*);
struct MemoryStruct* downloadToRam(const char* URL);
struct json_object* fetchJSON(const char*);

#endif