Lines Matching defs:end
37 /* return the first character position after the end of the data */
40 char *end;
43 end=strchr(l, '#');
44 if(end!=NULL) {
46 while(l!=end && ((c=*(end-1))==' ' || c=='\t')) {
47 --end;
50 end=strchr(l, 0);
52 return end;
64 /* find the end of data: end of string or start of comment */
76 char *end;
86 c=strtol(line, &end, 16);
87 if(end!=line && *skipWhitespace(end)==';') {
105 end=strchr(lastLine, '#');
106 if(end==NULL) {
116 end); /* comment from second line */
122 skipWhitespace(end+1)); /* comment from second line, after # and spaces */