Home
last modified time | relevance | path

Searched refs:pfx (Results 1 – 5 of 5) sorted by path

/original-bsd/bin/sh/
H A Dmystring.c69 prefix(pfx, string) in prefix() argument
70 register char const *pfx; in prefix()
73 while (*pfx) {
74 if (*pfx++ != *string++)
H A Dshow.c47 shtree(n, ind, pfx, fp) in shtree() argument
50 char *pfx;
59 indent(ind, pfx, fp);
231 indent(amount, pfx, fp) in indent() argument
233 char *pfx;
239 if (pfx && i == amount - 1)
240 fputs(pfx, fp);
/original-bsd/lib/libc/stdio/
H A Dtempnam.c20 tempnam(dir, pfx) in tempnam() argument
21 const char *dir, *pfx; in tempnam()
29 if (!pfx)
30 pfx = "tmp.";
34 *(f + strlen(f) - 1) == '/'? "": "/", pfx);
41 *(f + strlen(f) - 1) == '/'? "": "/", pfx);
47 (void)snprintf(name, MAXPATHLEN, "%s%sXXXXXX", f, pfx);
52 (void)snprintf(name, MAXPATHLEN, "%s%sXXXXXX", f, pfx);
/original-bsd/old/berknet/
H A Dv6mail.c789 stripfx(pfx, name) in stripfx() argument
790 register char *pfx; in stripfx()
795 while (*pfx && (*cp == *pfx || *cp == toupper(*pfx)))
796 cp++, pfx++;
797 if (*cp != ':' || *pfx != 0)
/original-bsd/usr.bin/fmt/
H A Dfmt.c40 int pfx; /* Current leading blank count */ variable
201 if (np != pfx && (np > pfx || abs(pfx-np) > 8))
214 pfx = np;
337 if (s > pfx) {
406 for (b = 0, cp = outbuf; b < pfx; b++) in leadin()