| 168 | }; |
| 169 | |
| 170 | static void create_map1(void) |
| 171 | { |
| 172 | int i, j; |
| 173 | |
| 174 | for (i = 0; i < 255; i++) { |
| 175 | if (i > 0) { |
| 176 | if (i % 8 == 0) |
| 177 | printf(",\r\n"); |
| 178 | else |
| 179 | printf(", "); |
| 180 | } |
| 181 | for (j = 0; __tab[j].ch; j++) { |
| 182 | if (__tab[j].ch == i) |
| 183 | break; |
| 184 | } |
| 185 | if (__tab[j].ch) |
| 186 | printf("\"%s\"", __tab[j].txt); |
| 187 | else |
| 188 | printf("NULL"); |
| 189 | } |
| 190 | printf("\r\n"); |
| 191 | } |
| 192 | |
| 193 | int main(void) |
| 194 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…