Rewrite tests
This commit is contained in:
parent
15ed23531f
commit
2b7c7ee780
2 changed files with 19 additions and 19 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue