| 27 | static char comment[BUFSZ]; |
| 28 | |
| 29 | static void |
| 30 | copy_colormap() |
| 31 | { |
| 32 | int r, g, b; |
| 33 | char c[2]; |
| 34 | |
| 35 | while (fscanf(infile, "%[A-Za-z0-9.] = (%d, %d, %d) ", c, &r, &g, &b) |
| 36 | == 4) { |
| 37 | Fprintf(outfile, "%c = (%d, %d, %d)\n", c[0], r, g, b); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | static boolean |
| 42 | read_txttile() |