Home | History | Annotate | Download | only in libedit

Lines Matching defs:history_gfun_t

95 typedef int (*history_gfun_t)(void *, TYPE(HistEvent) *);
103 history_gfun_t h_first; /* Get the first element */
104 history_gfun_t h_next; /* Get the next element */
105 history_gfun_t h_last; /* Get the last element */
106 history_gfun_t h_prev; /* Get the previous element */
107 history_gfun_t h_curr; /* Get the current element */
1124 hf.h_first = va_arg(va, history_gfun_t);
1125 hf.h_next = va_arg(va, history_gfun_t);
1126 hf.h_last = va_arg(va, history_gfun_t);
1127 hf.h_prev = va_arg(va, history_gfun_t);
1128 hf.h_curr = va_arg(va, history_gfun_t);