comparison src/xs_length.c @ 584:20cb21c4cb3c

Optimizations.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 Mar 2007 02:33:02 +0000
parents 81756f412b43
children acaba070cf49
comparison
equal deleted inserted replaced
583:f63a50ec456c 584:20cb21c4cb3c
207 207
208 /* Read and parse the data */ 208 /* Read and parse the data */
209 lineNum = 0; 209 lineNum = 0;
210 210
211 while (fgets(inLine, XS_BUF_SIZE, inFile) != NULL) { 211 while (fgets(inLine, XS_BUF_SIZE, inFile) != NULL) {
212 size_t linePos; 212 size_t linePos = 0;
213 linePos = 0;
214 lineNum++; 213 lineNum++;
215 214
216 xs_findnext(inLine, &linePos); 215 xs_findnext(inLine, &linePos);
217 216
218 /* Check if it is datafield */ 217 /* Check if it is datafield */