mirror of
https://github.com/tmux/tmux.git
synced 2024-11-05 10:28:48 +00:00
32 lines
387 B
C
32 lines
387 B
C
|
#include <sys/types.h>
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <time.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
time_t t;
|
||
|
int i;
|
||
|
|
||
|
setvbuf(stdout, NULL, _IONBF, 0);
|
||
|
|
||
|
t = time(NULL);
|
||
|
srandom((u_int) t);
|
||
|
|
||
|
for (;;) {
|
||
|
putchar('\033');
|
||
|
|
||
|
for (i = 0; i < random() % 25; i++) {
|
||
|
if (i > 22)
|
||
|
putchar(';');
|
||
|
else
|
||
|
putchar(random() % 256);
|
||
|
}
|
||
|
|
||
|
/* usleep(100); */
|
||
|
}
|
||
|
}
|