Add cls.c (nominally useful?) and stream.py (just an experiment.)
Chris Pressey
10 years ago
0 | #include <stdio.h> | |
1 | ||
2 | /* Properly clear the screen, even on AmigaOS 1.3 -- | |
3 | Move to top left corner, THEN erase to end of display. */ | |
4 | ||
5 | int main(int argc, char **argv) | |
6 | { | |
7 | printf("%c[1;1H%c[2J", 27, 27); | |
8 | return 0; | |
9 | } |