Home | History | Annotate | Download | only in ksh

Lines Matching refs:table

1 /* $NetBSD: table.h,v 1.4 2018/06/03 12:18:29 kamil Exp $ */
4 * generic hashed associative table for commands and variables.
7 struct table {
10 struct tbl **tbls; /* hashed table items */
13 struct tbl { /* table item */
114 struct table vars; /* local variables */
115 struct table funs; /* local functions */
138 EXTERN struct table taliases; /* tracked aliases */
139 EXTERN struct table builtins; /* built-in commands */
140 EXTERN struct table aliases; /* aliases */
141 EXTERN struct table keywords; /* keywords */
142 EXTERN struct table homedirs; /* homedir() cache */
149 /* these really are externs! Look in table.c for them */