| /src/usr.bin/tip/ |
| tipout.c | 74 char *pline = line; local 78 while (c != '\n' && line + sizeof line - pline > 0) { 79 *pline++ = c; 82 *pline = '\0'; 85 if (pline == line) {
|
| /src/external/bsd/mdocml/dist/ |
| demandoc.c | 34 static void pline(int, int *, int *, int); 215 pline(int line, int *linep, int *col, int list) function 240 pline(p->line, line, col, list); 254 pline(p->line, line, col, list);
|
| /src/games/hack/ |
| hack.topl.c | 74 static xchar tlx, tly; /* set by pline; used by addtopl */ 203 pline(const char *fmt, ...) function
|
| /src/libexec/getNAME/ |
| getNAME.c | 403 char *pline = line, *loc; local 406 while ((loc = memchr(pline, ' ', plen)) != NULL) { 407 plen -= loc - pline + 1; 408 pline = loc; 414 pline++; 425 char *pline = &line[4]; local 431 while ((loc = memchr(pline, '"', plen)) != NULL) { 432 plen -= loc - pline + 1; 433 pline = loc; 446 char *pline = &line[4] local [all...] |
| /src/sys/dev/cardbus/ |
| rbus_ppb.c | 158 int *pline = (int *)context; local 159 int line = *pline;
|
| /src/external/bsd/pkg_install/dist/lib/ |
| plist.c | 354 char pline[MaxPathSize]; local 360 while (fgets(pline, MaxPathSize, fp) != (char *) NULL) { 361 for (len = strlen(pline); len && 362 isspace((unsigned char) pline[len - 1]);) { 363 pline[--len] = '\0'; 369 if (*(cp = pline) == CMD_CHAR) { 370 if ((cmd = plist_cmd(pline + 1, &cp)) == FAIL) { 371 warnx("Unrecognised PLIST command `%s'", pline);
|
| /src/external/bsd/less/dist/ |
| edit.c | 222 char *pline = line; local 226 pline = strstr(pline, *pgm); 227 if (pline == NULL) /* pgm is not in this line */ 229 str = skipsp(pline + strlen(*pgm)); 230 if (pline == line || pline[-1] == ' ') 239 pline = str;
|
| /src/usr.bin/patch/ |
| patch.c | 1025 LINENUM pline = 1 + fuzz; local 1032 for (iline = base + offset + fuzz; pline <= pat_lines; pline++, iline++) { 1036 plineptr = pfetch(pline); 1037 plinelen = pch_line_len(pline);
|