17 lines
205 B
C
17 lines
205 B
C
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main(int argc, const char *argv[])
|
|
{
|
|
int i;
|
|
char buf[256];
|
|
|
|
fputs("Shell\n", stdout);
|
|
while (1) {
|
|
fputs("> ", stdout);
|
|
//fgets(buf, sizeof(buf), stdin);
|
|
}
|
|
}
|
|
|