diff options
Diffstat (limited to 'box.c')
-rw-r--r-- | box.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#include <stdio.h> + +int main(int argc, char **argv) +{ + if(argc != 2){ + printf("\33[?25l"); + } else { + printf("\33[?25h"); + } +} |