Home | History | Annotate | Download | only in toolutil

Lines Matching refs:end

79         char *end;
91 end=strchr(line, '#');
92 if(end!=NULL) {
93 *end=0;
96 end=strchr(line, 0);
97 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
98 *--end=0;
112 // find whitespace after the item or the end of the line
113 for(end=(char *)start; *end!=0 && *end!=' ' && *end!='\t'; ++end) {}
114 if(*end==0) {
116 end=NULL;
119 *end=0;
128 if(end==NULL || *(start=u_skipWhitespace(end+1))==0) {