NachOS/code/test/getstring.c
2021-10-14 23:47:48 +02:00

12 lines
195 B
C

#include "syscall.h"
#define MAX_INPUT_SIZE 4
int main(){
char t[100];
do {
GetString(t, MAX_INPUT_SIZE);
PutString(t);
PutChar('\n');
}
while(1 == 1);
}