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