blob: e92d8db3a2f3f5b59cf7f6ce4643edb9e366f24b [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001#include <string.h>
2
3const char* sysenv_get(const char *name) {
4 if (!strncmp(name, "mrdump_allocate_size", sizeof("mrdump_allocate_size")))
5 return ("fullmem");
6 if (!strncmp(name, "mrdump_output", sizeof("mrdump_output")))
7 return ("internal-storage");
8 return NULL;
9}
10
11int sysenv_set(const char *name, const char *value) {
12 return 0;
13}