| rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame] | 1 | #include <string.h> |
| 2 | |||||
| 3 | const 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 | |||||
| 11 | int sysenv_set(const char *name, const char *value) { | ||||
| 12 | return 0; | ||||
| 13 | } | ||||