Changeset 405 for trunk/dll/avl.c
- Timestamp:
- Jul 29, 2006, 10:01:37 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/avl.c
r378 r405 22 22 26 Jun 06 SHL load_archivers: remember where comments are 23 23 14 Jul 06 SHL Use Runtime_Error 24 29 Jul 06 SHL Use xfgets, xfgets_bstripcr 24 25 25 26 ***********************************************************************/ … … 286 287 static PSZ get_line_strip_comments(PSZ pszIn, FILE *fp) 287 288 { 288 PSZ psz = fgets(pszIn, ARCHIVER_LINE_BYTES, fp);289 PSZ psz = xfgets(pszIn, ARCHIVER_LINE_BYTES, fp, pszSrcFile, __LINE__); 289 290 PSZ psz2; 290 291 … … 304 305 static PSZ get_line_strip_white(PSZ pszIn, FILE *fp) 305 306 { 306 PSZ psz = fgets(pszIn, ARCHIVER_LINE_BYTES, fp);307 308 if (psz) {307 PSZ psz = xfgets_bstripcr(pszIn, ARCHIVER_LINE_BYTES, fp, pszSrcFile, __LINE__); 308 309 if (psz) 309 310 cur_line_num++; 310 bstripcr(pszIn); // Strip lead white and trailing white and CR/LF311 }312 311 313 312 return psz;
Note:
See TracChangeset
for help on using the changeset viewer.