#ifndef NET_H #define NET_H #include #include void net_init(void); void net_deinit(void); struct MemoryStruct* downloadToRam(const char* URL, int); void downloadToFile(const char*, const char*, int); struct json_object* fetchJSON(const char*); #endif