Symbol: fmtstr
bin/sh/error.c
387
fmtstr(buf, sizeof buf, "error %d", e);
bin/sh/expand.c
640
fmtstr(expdest, SPACE_NEEDED, "%"PRIdMAX, result);
bin/sh/jobs.c
427
fmtstr(str, sizeof str, "%d", n);
bin/sh/jobs.c
487
fmtstr(s, 16, "[%d] %c ",
bin/sh/jobs.c
498
fmtstr(s, 16, " " );
bin/sh/jobs.c
501
fmtstr(s + col, 16, "%ld ", (long)ps->pid);
bin/sh/jobs.c
509
fmtstr(s + col, 16, "Done(%d)", st);
bin/sh/jobs.c
511
fmtstr(s + col, 16, "Done");
bin/sh/options.c
652
fmtstr(s, sizeof(s), "%d", ind);
bin/sh/output.h
90
void fmtstr(char *, size_t, const char *, ...) __printflike(3, 4);
bin/sh/parser.c
2552
fmtstr(msg, 34, "Word \"%.13s\" unexpected", wordtext);
bin/sh/parser.c
2554
fmtstr(msg, 34,
bin/sh/parser.c
2557
fmtstr(msg, 34, "%s unexpected", tokname[lasttoken]);
bin/sh/parser.c
2561
fmtstr(p, 30, " (expecting \"%.10s\")", text);
bin/sh/parser.c
2563
fmtstr(p, 30, " (expecting %s)", tokname[token]);
libexec/telnetd/utility.c
440
static const char fmtstr[] = { "%l:%M\
libexec/telnetd/utility.c
477
(void)strftime(db, sizeof(db), fmtstr, localtime(&t));
sys/dev/audio/audio.c
8308
char fmtstr[64];
sys/dev/audio/audio.c
8310
audio_format2_tostr(fmtstr, sizeof(fmtstr), fmt);
sys/dev/audio/audio.c
8311
printf("%s %s\n", s, fmtstr);
usr.bin/mail/cmd1.c
82
const char *fmtstr;
usr.bin/mail/cmd1.c
85
fmtstr = value(ENAME_HEADER_FORMAT);
usr.bin/mail/cmd1.c
86
if (fmtstr == NULL)
usr.bin/mail/cmd1.c
87
fmtstr = DEFAULT_HEADER_FORMAT;
usr.bin/mail/cmd1.c
88
msgline = smsgprintf(fmtstr, get_message(mesg));
usr.bin/mail/collect.c
241
char *fmtstr;
usr.bin/mail/collect.c
248
if (tabst && (fmtstr = value(ENAME_INDENT_PREAMBLE)) != NULL)
usr.bin/mail/collect.c
249
fmsgprintf(collf, fmtstr, mp);
usr.bin/mail/collect.c
267
if (tabst && (fmtstr = value(ENAME_INDENT_POSTSCRIPT)) != NULL)
usr.bin/mail/collect.c
268
fmsgprintf(collf, fmtstr, mp);
usr.bin/mail/format.c
1034
smsgprintf(const char *fmtstr, struct message *mp)
usr.bin/mail/format.c
1042
if (strncmp(fmtstr, USE_HL_DATE, sizeof(USE_HL_DATE) - 1) != 0)
usr.bin/mail/format.c
1046
fmtstr += sizeof(USE_HL_DATE) - 1;
usr.bin/mail/format.c
1050
newfmt = preformat(&tm, fmtstr, mp, use_hl_date);
usr.bin/mail/format.c
1058
fmsgprintf(FILE *fo, const char *fmtstr, struct message *mp)
usr.bin/mail/format.c
1062
buf = smsgprintf(fmtstr, mp);