| 1407 | |
| 1408 | |
| 1409 | int tabcmp(const int *tab1, const int *tab2, int n) |
| 1410 | { |
| 1411 | int i; |
| 1412 | for(i = 0; i < n; i++) { |
| 1413 | if (tab1[i] != tab2[i]) |
| 1414 | return -1; |
| 1415 | } |
| 1416 | return 0; |
| 1417 | } |
| 1418 | |
| 1419 | void dump_str(const char *str, const int *buf, int len) |
| 1420 | { |
no outgoing calls
no test coverage detected