12 lines
195 B
C
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);
|
|
}
|