/src/lib/libc/gen/ |
shquote.c | 91 #define XLATE_OUTCH(x) wcrtomb(outch, (x), &mbso) 99 #define XLATE_OUTCH(x) (outch[0] = (x), 1) 116 outch[outchlen - 1] != '\0')) { \ 120 memcpy(buf, outch, outchlen); \ 131 char outch[MB_LEN_MAX]; local in function:__weak_alias 136 char outch[1];
|
/src/games/hunt/huntd/ |
draw.c | 61 outch(pp, translate(*sp)); 63 outch(pp, player_sym(pp, y, x)); 65 outch(pp, *sp); 275 outch(rpp, translate(ch)); 277 outch(rpp, player_sym(rpp, y, x)); 279 outch(rpp, ch); 300 outch(np, c); 305 outch(np, c);
|
terminal.c | 58 * outch: 62 outch(PLAYER *pp, int ch) function in typeref:typename:void
|
expl.c | 77 outch(pp, type); 85 outch(pp, type); 131 outch(pp, c);
|
hunt.h | 206 void outch(PLAYER *, int);
|
/src/sys/fs/msdosfs/ |
msdosfs_conv.c | 817 uint16_t outch; local in function:utf8ucs2 822 outch = in[0]; 824 *out = htole16(outch); 828 outch = (in[0] & 0x1f) << 6 | (in[1] & 0x3f); 830 *out = htole16(outch); 834 outch = (in[0] & 0x1f) << 12 | (in[1] & 0x3f) << 6 | (in[2] & 0x3f); 836 *out = htole16(outch);
|