Home
last modified time | relevance | path

Searched refs:CCRETVAL (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/tcsh/
H A Ded.decls.h42 extern CCRETVAL GetHistLine (void);
123 extern CCRETVAL e_unassigned (Char);
124 extern CCRETVAL e_insert (Char);
125 extern CCRETVAL e_newline (Char);
126 extern CCRETVAL e_delprev (Char);
127 extern CCRETVAL e_delnext (Char);
129 extern CCRETVAL e_delnext_eof (Char);
130 extern CCRETVAL e_delnext_list (Char);
131 extern CCRETVAL e_delnext_list_eof (Char); /* for ^D */
132 extern CCRETVAL e_toend (Char);
[all …]
H A Ded.chared.c133 static CCRETVAL c_search_line (Char *, int);
134 static CCRETVAL v_repeat_srch (int);
135 static CCRETVAL e_inc_search (int);
137 static CCRETVAL e_insert_str (Char *);
139 static CCRETVAL v_search (int);
140 static CCRETVAL v_csearch_fwd (Char, int, int);
141 static CCRETVAL v_action (int);
142 static CCRETVAL v_csearch_back (Char, int, int);
960 CCRETVAL
1030 static CCRETVAL
[all …]
H A Ded.h54 #define CCRETVAL char /* size needed for the different char editor */ macro
60 typedef CCRETVAL(*PFCmd) (Char); /* pointer to function returning CCRETVAL */
H A Ded.inputl.c78 CCRETVAL retval; in Inputl()