| 1110 | } |
| 1111 | |
| 1112 | char *next_lf(char *p) |
| 1113 | { |
| 1114 | linecount++; |
| 1115 | while ((*p!='\n')&&(*p!=0)) { if (*p=='\r') *p=0; p++; } |
| 1116 | if (*p==0) { printf("Truncated INDEX.FSH\n"); abandon_ship(); } |
| 1117 | *p=0; |
| 1118 | p++; |
| 1119 | if (*p=='\r') p++; |
| 1120 | return p; |
| 1121 | } |
| 1122 | |
| 1123 | void idxerr() |
| 1124 | { |
no test coverage detected