Displaying 1 result from an estimated 1 matches for "gotopt".
Did you mean:
getopt
2010 Jul 07
3
Message: "err:psdrv:PSDRV_PPDGetNextTuple Line too long."
...e next Keyword Option Value tuple from the file. Allocs space off
00359 * the process heap which should be free()ed by the caller if not needed.
00360 */
00361 static BOOL PSDRV_PPDGetNextTuple(FILE *fp, PPDTuple *tuple)
00362 {
00363 char line[257], *opt, *cp, *trans, *endkey;
00364 BOOL gotoption;
00365
00366 start:
00367
00368 gotoption = TRUE;
00369 opt = NULL;
00370 memset(tuple, 0, sizeof(*tuple));
00371
00372 do {
00373 if(!fgets(line, sizeof(line), fp))
00374 return FALSE;
00375 if(line[0] == '*' && line[1] != '%'...