Apple ][ Helper

This commit is contained in:
2021-07-30 21:53:27 -04:00
commit c1c8a0a2eb
8 changed files with 87 additions and 0 deletions

16
Library/clear.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef CLEAR_H
#define CLEAR_H
#include <conio.h>
void clear(int w, int h){
int i = 0;
int j = 0;
for(i=0; i<h; i++) {
for(j=0; j<w; j++) {
cputs(" ");
}
cputs("\n\r");
}
}
#endif