Lines Matching defs:comment
950 char *comment;
954 comment = strstr(line, "#");
955 if (comment) {
956 /* comment points to # but we need to remove the
958 comment--;
959 while (comment >= line) {
960 if (*comment != ' ' && *comment != '\t')
962 comment--;
964 *(comment + 1) = '\0';
966 comment = strstr(line, "\n");
967 if (comment)
968 *comment = '\0';