/src/games/hunt/huntd/ |
draw.c | 54 outstr(pp, pp->p_maze[0], WIDTH); 69 outstr(pp, pp->p_maze[HEIGHT - 1], WIDTH); 84 outstr(pp, "Ammo:", 5); 87 outstr(pp, Buf, 3); 90 outstr(pp, "Gun:", 4); 92 outstr(pp, (pp->p_ncshot < MAXNCSHOT) ? " ok" : " ", 3); 95 outstr(pp, "Damage:", 7); 99 outstr(pp, Buf, 5); 102 outstr(pp, "Kills:", 6); 105 outstr(pp, Buf, 3) [all...] |
execute.c | 308 outstr(pp, " ok", 3); 358 outstr(pp, " ", 3); 363 outstr(pp, Buf, 3); 405 outstr(pp, " ", 3); 410 outstr(pp, Buf, 3); 516 outstr(pp, Buf, 3); 539 outstr(pp, Buf, 3); 574 outstr(pp, Buf, 3);
|
answer.c | 159 outstr(pp, buf, n); 163 outstr(pp, buf, n); 239 outstr(npp, Buf, STAT_NAME_LEN); 243 outstr(npp, Buf, STAT_NAME_LEN); 348 outstr(pp, Buf, STAT_NAME_LEN); 352 outstr(pp, smallbuf, 3); 358 outstr(pp, Buf, STAT_NAME_LEN);
|
terminal.c | 72 * outstr: 76 outstr(PLAYER *pp, const char *str, int len) function in typeref:typename:void
|
driver.c | 560 outstr(ouch, Buf, 2); 645 outstr(gotcha, Buf, 5); 649 outstr(gotcha, Buf, 3); 654 outstr(ouch, Buf, 5); 660 outstr(ouch, Buf, 5); 687 outstr(pp, pp->p_death, len); 693 outstr(pp, pp->p_death, len); 695 outstr(pp, pp->p_death, len); 819 outstr(np, Buf, STAT_NAME_LEN); 824 outstr(np, Buf, STAT_NAME_LEN) [all...] |
hunt.h | 207 void outstr(PLAYER *, const char *, int);
|
shots.c | 321 outstr(pp, Buf, 3); 502 outstr(pp, Buf, 3);
|
/src/sys/arch/mvme68k/stand/libbug/ |
Makefile | 13 outln.c outstr.c putchar.c return.c rtc_rd.c
|
/src/bin/sh/bltin/ |
bltin.h | 74 #define fputs(...) _RETURN_INT(outstr(__VA_ARGS__))
|
/src/bin/sh/ |
output.h | 71 void outstr(const char *, struct output *);
|
output.c | 134 outstr(p, out1); 141 outstr(p, out2); 148 outstr(p, outx); 154 outstr(const char *p, struct output *file) function in typeref:typename:void 218 outstr(p, file); 411 outstr(s, dest);
|
redir.c | 1217 outstr(redir_sym[n->type - MIN_REDIR], out); 1221 outstr("'...'", out); 1224 outstr("...", out); 1234 outstr(n->nfile.expfname, out);
|
trap.c | 160 outstr("\n", out); 215 outstr(name, out);
|
jobs.c | 525 outstr(s, out); 530 outstr(ps->cmd, out);
|
/src/usr.bin/infocmp/ |
infocmp.c | 59 outstr(FILE *f, const char *str) function in typeref:typename:size_t 180 outstr(NULL, ents[i].str) + 7; 209 col += outstr(stdout, ents[i].str); 338 outstr(stdout, ent->str); 409 outstr(stdout, ents1[i1].str);
|
/src/usr.sbin/sysinst/ |
partitions.h | 317 part_id, size_t col, char *outstr, size_t outspace);
|
/src/libexec/ftpd/ |
ftpd.c | 2273 * Transfer the contents of "instr" to "outstr" peer using the appropriate 2279 send_data(FILE *instr, FILE *outstr, const struct stat *st, int isdata) 2297 if (ferror(outstr)) 2299 (void) putc('\r', outstr); 2307 (void) putc(c, outstr); 2318 fflush(outstr); 2321 if (ferror(outstr)) 2329 netfd = fileno(outstr); 2377 * Transfer data from peer to "outstr" using the appropriate encapsulation of 2383 receive_data(FILE *instr, FILE *outstr) [all...] |