Symbol: tilde
bin/csh/file.c
110
static Char *tilde(Char *, Char *);
bin/csh/file.c
619
if (tilde(tilded_dir, dir) == 0)
bin/ksh/edit.c
412
x_tilde_expand(const char *tilde)
bin/ksh/edit.c
418
if (tilde[0] != '~')
bin/ksh/edit.c
420
if (tilde[1] == '\0')
bin/ksh/edit.c
422
else if (tilde[1] == '+' && tilde[2] == '\0')
bin/ksh/edit.c
424
else if (tilde[1] == '-' && tilde[2] == '\0')
bin/ksh/edit.c
427
tp = ktsearch(&homedirs, tilde + 1, hash(tilde + 1));
bin/ksh/edit.c
430
else if ((pw = getpwnam(tilde + 1)) != NULL)
bin/ksh/edit.c
441
x_tilde_is_dir(const char *tilde, int len)
bin/ksh/edit.c
447
copy = str_nsave(tilde, len, ATEMP);
bin/ksh/edit.c
515
x_tilde_name(const char *tilde)
bin/ksh/edit.c
517
if (tilde[0] != '~' || tilde[1] == '\0')
bin/ksh/edit.c
519
if ((tilde[1] == '+' || tilde[1] == '-') && tilde[2] == '\0')
bin/ksh/edit.c
521
return tilde + 1;
bin/ksh/edit.c
561
char *tilde = NULL;
bin/ksh/edit.c
578
tilde = str_nsave(str, tlen, ATEMP);
bin/ksh/edit.c
579
tilde_name = x_tilde_name(tilde);
bin/ksh/edit.c
630
if (preserve_tilde && tilde != NULL &&
bin/ksh/edit.c
631
(tilde_expanded = x_tilde_expand(tilde)) != NULL)
bin/ksh/edit.c
632
x_preserve_tilde(words, nwords, tilde,
bin/ksh/edit.c
651
if (tilde)
bin/ksh/edit.c
652
afree(tilde, ATEMP);
bin/ksh/edit.c
660
x_preserve_tilde(char **words, int nwords, const char *tilde,
bin/ksh/edit.c
666
tilde_len = strlen(tilde);
bin/ksh/edit.c
684
memcpy(nw, tilde, tilde_len);
bin/ksh/eval.c
1196
tilde(Xstring(ts, tp)) : NULL;
bin/ksh/eval.c
60
static char *tilde(char *);
lib/libcurses/tty/tty_update.c
227
NCURSES_CH_T tilde;
lib/libcurses/tty/tty_update.c
353
SetChar(tilde, L('`'), AttrOf(attr));
lib/libcurses/tty/tty_update.c
354
ch = CHREF(tilde);
usr.bin/rdist/expand.c
132
tilde = "";
usr.bin/rdist/expand.c
264
tilde = "~";
usr.bin/rdist/expand.c
267
tilde = memcpy(ebuf, s, (cp - s));
usr.bin/rdist/expand.c
271
cp = exptilde(path, tilde, sizeof(pathbuf));
usr.bin/rdist/expand.c
275
tilde = "";
usr.bin/rdist/expand.c
282
Cat((u_char *)tilde, s);
usr.bin/rdist/expand.c
321
Cat((u_char *)tilde, (u_char *)tpathp);
usr.bin/rdist/expand.c
370
Cat((u_char *)tilde, (u_char *)tpathp);
usr.bin/rdist/expand.c
53
char *tilde; /* "~user" if not expanding tilde, else "" */
usr.bin/rdist/expand.c
575
Cat((u_char *)tilde,
usr.bin/vi/ex/ex_subst.c
216
goto tilde;
usr.bin/vi/ex/ex_subst.c
219
tilde: ++p;