Home | History | Annotate | Download | only in toolutil

Lines Matching refs:end

81         char *end;
93 end=strchr(line, '#');
94 if(end!=NULL) {
95 *end=0;
98 end=strchr(line, 0);
99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
100 *--end=0;
114 // find whitespace after the item or the end of the line
115 for(end=(char *)start; *end!=0 && *end!=' ' && *end!='\t'; ++end) {}
116 if(*end==0) {
118 end=NULL;
121 *end=0;
130 if(end==NULL || *(start=u_skipWhitespace(end+1))==0) {