bottleros/Userland/SampleCodeModule/shell/commands/mem.c

13 lines
350 B
C

// This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "libc.h"
#include "shell.h"
void mem(int argc, char *argv[]) {
char * output = sys_dumpMM();
printString(output);
newline();
sys_free(output);
addEOF();
sys_exit();
}