Rewrite tests

This commit is contained in:
Yorick Barbanneau 2021-10-14 23:47:48 +02:00
parent 15ed23531f
commit 2b7c7ee780
2 changed files with 19 additions and 19 deletions

View file

@ -1,13 +1,12 @@
#include "syscall.h"
#define MAX_INPUT_SIZE 4
int main()
{
//char s;
//s = GetChar();
//PutChar(s);
int main(){
char t[100];
GetString(t, 100);
PutString(t);
PutChar('\n');
PutString("Ceci est un test de grande ampleur");
do {
GetString(t, MAX_INPUT_SIZE);
PutString(t);
PutChar('\n');
}
while(1 == 1);
}