14 lines
299 B
C
14 lines
299 B
C
#ifndef SHELL_H
|
|
#define SHELL_H
|
|
|
|
#include <metalsvm/stdio.h>
|
|
|
|
void shelldebugprint(char* x);
|
|
|
|
void shell_init(int srv_or_cli);
|
|
|
|
extern char shellbuffer[512];
|
|
|
|
#define SHELLDEBUGPRINTF(x,...) ksnprintf(shellbuffer,sizeof(shellbuffer),x,##__VA_ARGS__);shelldebugprint(shellbuffer);
|
|
|
|
#endif // SHELL_H
|