12 lines
219 B
C++
12 lines
219 B
C++
#ifndef _UTIL_H_
|
|
#define _UTIL_H_
|
|
|
|
#include <string>
|
|
#include <3ds.h>
|
|
#include <jansson.h>
|
|
|
|
std::string urlencode(std::string str);
|
|
|
|
char* json_object_get_string_value(json_t* obj, const char* key);
|
|
|
|
#endif // _UTIL_H_
|