lib/libedit/hist.h
62
#define HIST_NEXT(el) HIST_FUN(el, H_NEXT, NULL)
lib/libedit/hist.h
63
#define HIST_FIRST(el) HIST_FUN(el, H_FIRST, NULL)
lib/libedit/hist.h
64
#define HIST_LAST(el) HIST_FUN(el, H_LAST, NULL)
lib/libedit/hist.h
65
#define HIST_PREV(el) HIST_FUN(el, H_PREV, NULL)
lib/libedit/hist.h
66
#define HIST_SET(el, num) HIST_FUN(el, H_SET, num)
lib/libedit/hist.h
67
#define HIST_LOAD(el, fname) HIST_FUN(el, H_LOAD fname)
lib/libedit/hist.h
68
#define HIST_SAVE(el, fname) HIST_FUN(el, H_SAVE fname)
lib/libedit/hist.h
69
#define HIST_SAVE_FP(el, fp) HIST_FUN(el, H_SAVE_FP, fp)
lib/libedit/hist.h
70
#define HIST_NSAVE_FP(el, n, fp) HIST_FUN(el, H_NSAVE_FP, n, fp)