White space separated fields
White space separated fields


Test for white space transition
Notes
This code use transition into and out of whitespace to define field ranges.
Segment Element
Code insertion

 554:     while (ptr < lim && sword--)
 555:       {
 556:         while (ptr < lim && blanks[UCHAR (*ptr)])
 557:           ++ptr;
 558:         while (ptr < lim && !blanks[UCHAR (*ptr)])
 559:           ++ptr;
 560:       }
 561: 

Segment Element
Code insertion

 603:     while (ptr < lim && eword--)
 604:       {
 605:         while (ptr < lim && blanks[UCHAR (*ptr)])
 606:           ++ptr;
 607:         while (ptr < lim && !blanks[UCHAR (*ptr)])
 608:           ++ptr;
 609:       }