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

7 lines
139 B
C

#include "libc.h"
#include "shell.h"
#include "clear.h"
void clear(char * window, int * offset) {
clearWindow(window, offset);
}