| 86 | } |
| 87 | } |
| 88 | int main() { |
| 89 | short* table = get_table(); |
| 90 | for (int i = 0; i < INTER_TAB_SIZE * INTER_TAB_SIZE; i++) { |
| 91 | for (int j = 0; j < 4; j++) { |
| 92 | printf("%d, ", *table); |
| 93 | ++table; |
| 94 | } |
| 95 | printf("\n"); |
| 96 | } |
| 97 | } |
nothing calls this directly
no test coverage detected