Trim spaces in keys
Trim spaces in keys

Trim leading spaces in keys, especially for type conversion


Ignore leading white space
Segment Element
Code insertion

 818:   tmpa = UCHAR (*a);
 819:   tmpb = UCHAR (*b);
 820: 
 821:   while (blanks[tmpa])
 822:     tmpa = UCHAR (*++a);
 823:   while (blanks[tmpb])
 824:     tmpb = UCHAR (*++b);

Ignore leading white space
Segment Element
Code insertion

 818:   tmpa = UCHAR (*a);
 819:   tmpb = UCHAR (*b);
 820: 
 821:   while (blanks[tmpa])
 822:     tmpa = UCHAR (*++a);
 823:   while (blanks[tmpb])
 824:     tmpb = UCHAR (*++b);

Ignore leading white space
Segment Element
Code insertion

 964:   while (len > 0 && blanks[UCHAR(*s)])
 965:     ++s, --len;
 966: