Lines Matching defs:screen
17 char screen[23][90], buf[10];
23 screen[0][x] = ' ';
24 screen[0][79] = '\0';
26 fgets(screen[0],90,stdin);
27 if (isdigit(screen[0][0])) {
28 int numstars = atoi(screen[0]);
32 screen[y][x] = ' ';
33 screen[y][79] = '\0';
40 screen[y][x+x] = '*';
44 printf("%s\n",screen[y]);
52 screen[y][x] = ' ';
53 screen[y][79] = '\0';
57 fgets(screen[y],90,stdin);
62 if (screen[y][x] == '*') {
65 else if (screen[y][x] == '\t' || screen[y][x+1] == '\t') {
76 if (screen[y][x] == '*') {