Lines Matching refs:tchar
36 extern DIR *opendir_(tchar *);
47 static int is_prefix(tchar *, tchar *);
48 static int is_suffix(tchar *, tchar *);
49 static int ignored(tchar *);
153 pushback(tchar *string, int echoflag) in pushback()
155 tchar *p; in pushback()
199 catn(tchar *des, tchar *src, int count) in catn()
225 copyn(tchar *des, tchar *src, int count) in copyn()
241 fcompare(tchar **file1, tchar **file2) in fcompare()
251 filetype(tchar *dir, tchar *file, int nosym) in filetype()
253 tchar path[MAXPATHLEN + 1]; in filetype()
283 print_by_column(tchar *dir, tchar *items[], int count, int looking_for_command) in print_by_column()
312 (tchar) filetype(dir, items[i], 0)); in print_by_column()
330 tchar *
331 tilde(tchar *new, tchar *old) in tilde()
333 tchar *o, *p; in tilde()
335 static tchar person[40]; in tilde()
337 tchar *pw_dir; /* work */ in tilde()
354 pw_dir = strtots((tchar *)NULL, pw->pw_dir); /* allocate */ in tilde()
414 print_recognized_stuff(tchar *recognized_part) in print_recognized_stuff()
457 extract_dir_and_name(tchar *path, tchar *dir, tchar *name) in extract_dir_and_name()
459 tchar *p; in extract_dir_and_name()
474 tchar *
482 static tchar strbuf[MAXNAMLEN+1]; in getentry()
498 free_items(tchar **items) in free_items()
523 search2(tchar *word, COMMAND command, int max_word_length) in search2()
525 static tchar **items = NULL; in search2()
529 tchar tilded_dir[MAXPATHLEN + 1], dir[MAXPATHLEN + 1]; in search2()
530 tchar name[MAXNAMLEN + 1], extended_name[MAXNAMLEN+1]; in search2()
531 tchar *entry; in search2()
570 items = (tchar **)xcalloc(sizeof (items[1]), in search2()
572 items[numitems] = (tchar *)xalloc((unsigned)(strlen_(entry) + 1) * sizeof (tchar)); in search2()
634 recognize(tchar *extended_name, tchar *entry, int name_length, int numitems) in recognize()
643 tchar *x, *ent; in recognize()
662 is_prefix(tchar *check, tchar *template) in is_prefix()
680 is_suffix(tchar *check, tchar *template) in is_suffix()
682 tchar *c, *t; in is_suffix()
700 tenex(tchar *inputline, int inputline_size) in tenex()
714 static tchar *delims = S_DELIM /* " '\"\t;&<>()|`" */; in tenex()
715 tchar *str_end, *word_start, last_char; in tenex()
797 ignored(tchar *entry) in ignored()
800 tchar **cp; in ignored()