part              371 gozilla/gozilla.c 		if (!strcmp(arg, ptable.part[0].start)) {
part              383 gozilla/gozilla.c 	makefileurl(makepath(htmldir, ptable.part[1].start, NULL), 0, URL);
part              156 htags/anchor.c 				char *p = ptable.part[PART_LINE].start;
part              173 htags/anchor.c 				else if ((p = locatestring(p, ptable.part[PART_TAG].start, MATCH_FIRST)) != NULL) {
part              175 htags/anchor.c 					p += strlen(ptable.part[PART_TAG].start);
part              187 htags/anchor.c 			a->lineno = atoi(ptable.part[PART_LNO].start);
part              190 htags/anchor.c 			settag(a, ptable.part[PART_TAG].start);
part              627 htags/common.c 	strlimcpy(path, decode_path(ptable.part[PART_PATH].start + 2), sizeof(path));
part              634 htags/common.c 			strbuf_puts(sb, gen_href_begin(srcdir, fid, HTML, ptable.part[PART_LNO].start));
part              635 htags/common.c 			strbuf_puts(sb, ptable.part[PART_TAG].start);
part              638 htags/common.c 				ptable.part[PART_LNO].start, path);
part              641 htags/common.c 			strbuf_puts(sb, gen_href_begin(srcdir, fid, HTML, ptable.part[PART_LNO].start));
part              642 htags/common.c 			strbuf_puts(sb, ptable.part[PART_TAG].start);
part              646 htags/common.c 				ptable.part[PART_LNO].start, path);
part              648 htags/common.c 		for (p = ptable.part[PART_LINE].start; *p; p++) {
part              671 htags/common.c 		strbuf_puts(sb, gen_href_begin(srcdir, fid, HTML, ptable.part[PART_LNO].start));
part              672 htags/common.c 		strbuf_puts(sb, ptable.part[PART_TAG].start);
part              677 htags/common.c 		for (p = ptable.part[PART_TAG].end; p < ptable.part[PART_PATH].start; p++)
part              682 htags/common.c 		for (p = ptable.part[PART_PATH].end; *p; p++) {
part              833 htags/fileindex.c 		if ((suffix = locatestring(ptable.part[PART_PATH].start, ".", MATCH_LAST)) != NULL
part              837 htags/fileindex.c 		last = extract_lastname(ptable.part[PART_LINE].start, is_php);
part              908 htags/fileindex.c 			snprintf(buf, sizeof(buf), "%s %s", ptable.part[PART_LNO].start, decode_path(ptable.part[PART_PATH].start));
part              103 libutil/split.c 	struct part *part = &list->part[0];
part              114 libutil/split.c 		part->start = s;
part              117 libutil/split.c 		part->end = s;
part              118 libutil/split.c 		part->savec = *s;
part              119 libutil/split.c 		part++;
part              124 libutil/split.c 		part->start = s;
part              125 libutil/split.c 		part->end = (char *)0;
part              126 libutil/split.c 		part->savec = 0;
part              128 libutil/split.c 		part++;
part              130 libutil/split.c 	while (part-- > &list->part[0]) {
part              131 libutil/split.c 		if (part->savec != '\0')
part              132 libutil/split.c 			*part->end = '\0';
part              146 libutil/split.c 		if ((c = list->part[i].savec) != '\0')
part              147 libutil/split.c 			*(list->part[i].end) = c;
part              157 libutil/split.c 	struct part *part;
part              162 libutil/split.c 		part = &list->part[i];
part              163 libutil/split.c 		fprintf(stderr, "string[%d]: |%s|\n", i, part->start);
part              164 libutil/split.c 		fprintf(stderr, "savec[%d] : |%c|\n", i, part->savec);
part               27 libutil/split.h 	struct part {
part               31 libutil/split.h 	} part[NPART];