2011-07-12 15:02:23 +02:00
|
|
|
#ifndef SHELL_H
|
|
|
|
#define SHELL_H
|
|
|
|
|
2011-07-26 14:34:06 +02:00
|
|
|
#include <metalsvm/stdio.h>
|
|
|
|
|
2011-07-12 15:47:00 +02:00
|
|
|
void shelldebugprint(char* x);
|
2011-07-12 15:02:23 +02:00
|
|
|
|
|
|
|
void shell_init(int srv_or_cli);
|
|
|
|
|
2011-07-26 14:34:06 +02:00
|
|
|
extern char shellbuffer[512];
|
|
|
|
|
|
|
|
#define SHELLDEBUGPRINTF(x,...) ksnprintf(shellbuffer,sizeof(shellbuffer),x,##__VA_ARGS__);shelldebugprint(shellbuffer);
|
|
|
|
|
2011-07-12 15:02:23 +02:00
|
|
|
#endif // SHELL_H
|