renamed grep to find, starting refractoring

master
Tibor Bizjak 2023-07-20 15:50:52 +02:00
parent 2b9c7e9bcb
commit 70a6cd85ab
3 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
#include <stdio.h>
#define W 80
#define REPEAT 4000000
int main()
{
int i, j;
for (i = 0; i < REPEAT; i++) {
for (j = 0; j < W; j++)
putchar('y');
putchar('\n');
}
return 0;
}