Searched refs:el (Results 1 - 25 of 125) sorted by relevance

12345

/freebsd-9.3-release/lib/libedit/
H A Dcommon.c45 #include "el.h"
53 ed_end_of_file(EditLine *el, int c __unused) argument
56 re_goto_bottom(el);
57 *el->el_line.lastchar = '\0';
67 ed_insert(EditLine *el, int c) argument
69 int count = el->el_state.argument;
74 if (el->el_line.lastchar + el->el_state.argument >=
75 el->el_line.limit) {
77 if (!ch_enlargebufs(el, (size_
110 ed_delete_prev_word(EditLine *el, int c __unused) argument
138 ed_delete_next_char(EditLine *el, int c) argument
185 ed_kill_line(EditLine *el, int c __unused) argument
206 ed_move_to_end(EditLine *el, int c __unused) argument
229 ed_move_to_beg(EditLine *el, int c __unused) argument
252 ed_transpose_chars(EditLine *el, int c) argument
278 ed_next_char(EditLine *el, int c __unused) argument
307 ed_prev_word(EditLine *el, int c __unused) argument
333 ed_prev_char(EditLine *el, int c __unused) argument
357 ed_quoted_insert(EditLine *el, int c) argument
377 ed_digit(EditLine *el, int c) argument
405 ed_argument_digit(EditLine *el, int c) argument
430 ed_unassigned(EditLine *el, int c __unused) argument
545 ed_newline(EditLine *el, int c __unused) argument
561 ed_delete_prev_char(EditLine *el, int c __unused) argument
581 ed_clear_screen(EditLine *el, int c __unused) argument
610 ed_start_over(EditLine *el, int c __unused) argument
638 ed_prev_history(EditLine *el, int c __unused) argument
676 ed_next_history(EditLine *el, int c __unused) argument
703 ed_search_prev_history(EditLine *el, int c __unused) argument
771 ed_search_next_history(EditLine *el, int c __unused) argument
825 ed_prev_line(EditLine *el, int c __unused) argument
868 ed_next_line(EditLine *el, int c __unused) argument
902 ed_command(EditLine *el, int c __unused) argument
[all...]
H A Dhist.c46 #include "el.h"
52 hist_init(EditLine *el) argument
55 el->el_history.fun = NULL;
56 el->el_history.ref = NULL;
57 el->el_history.buf = (char *) el_malloc(EL_BUFSIZ);
58 el->el_history.sz = EL_BUFSIZ;
59 if (el->el_history.buf == NULL)
61 el->el_history.last = el->el_history.buf;
70 hist_end(EditLine *el) argument
82 hist_set(EditLine *el, hist_fun_t fun, ptr_t ptr) argument
96 hist_get(EditLine *el) argument
154 hist_command(EditLine *el, int argc, const char **argv) argument
192 hist_enlargebuf(EditLine *el, size_t oldsz, size_t newsz) argument
[all...]
H A Demacs.c45 #include "el.h"
53 em_delete_or_list(EditLine *el, int c) argument
56 if (el->el_line.cursor == el->el_line.lastchar) {
58 if (el->el_line.cursor == el->el_line.buffer) {
60 term_writec(el, c); /* then do an EOF */
67 term_beep(el);
71 if (el->el_state.doingarg)
72 c_delafter(el, e
89 em_delete_next_word(EditLine *el, int c __unused) argument
118 em_yank(EditLine *el, int c __unused) argument
153 em_kill_line(EditLine *el, int c __unused) argument
175 em_kill_region(EditLine *el, int c __unused) argument
208 em_copy_region(EditLine *el, int c __unused) argument
237 em_gosmacs_transpose(EditLine *el, int c) argument
257 em_next_word(EditLine *el, int c __unused) argument
282 em_upper_case(EditLine *el, int c __unused) argument
306 em_capitol_case(EditLine *el, int c __unused) argument
338 em_lower_case(EditLine *el, int c __unused) argument
362 em_set_mark(EditLine *el, int c __unused) argument
376 em_exchange_mark(EditLine *el, int c __unused) argument
393 em_universal_argument(EditLine *el, int c __unused) argument
410 em_meta_next(EditLine *el, int c __unused) argument
423 em_toggle_overwrite(EditLine *el, int c __unused) argument
437 em_copy_prev_word(EditLine *el, int c __unused) argument
464 em_inc_search_next(EditLine *el, int c __unused) argument
477 em_inc_search_prev(EditLine *el, int c __unused) argument
491 em_delete_prev_char(EditLine *el, int c __unused) argument
[all...]
H A Dread.c50 #include "el.h"
64 read_init(EditLine *el) argument
67 el->el_read.read_char = read_char;
77 el_read_setfn(EditLine *el, el_rfunc_t rc) argument
79 el->el_read.read_char = (rc == EL_BUILTIN_GETCFN) ? read_char : rc;
89 el_read_getfn(EditLine *el) argument
91 return (el->el_read.read_char == read_char) ?
92 EL_BUILTIN_GETCFN : el->el_read.read_char;
102 read_debug(EditLine *el) argument
105 if (el
185 read_preread(EditLine *el) argument
214 el_push(EditLine *el, const char *str) argument
233 read_getcmd(EditLine *el, el_action_t *cmdnum, char *ch) argument
290 read_char(EditLine *el, char *cp) argument
332 el_getc(EditLine *el, char *cp) argument
379 read_prepare(EditLine *el) argument
400 read_finish(EditLine *el) argument
409 el_gets(EditLine *el, int *nread) argument
[all...]
H A Dvi.c46 #include "el.h"
55 cv_action(EditLine *el, int c) argument
58 if (el->el_chared.c_vcmd.action != NOP) {
60 if (c != el->el_chared.c_vcmd.action)
64 cv_undo(el);
65 cv_yank(el, el->el_line.buffer,
66 (int)(el->el_line.lastchar - el->el_line.buffer));
67 el
87 cv_paste(EditLine *el, int c) argument
118 vi_paste_next(EditLine *el, int c __unused) argument
131 vi_paste_prev(EditLine *el, int c __unused) argument
144 vi_prev_big_word(EditLine *el, int c) argument
169 vi_prev_word(EditLine *el, int c __unused) argument
194 vi_next_big_word(EditLine *el, int c) argument
218 vi_next_word(EditLine *el, int c __unused) argument
241 vi_change_case(EditLine *el, int c) argument
273 vi_change_meta(EditLine *el, int c __unused) argument
290 vi_insert_at_bol(EditLine *el, int c __unused) argument
306 vi_replace_char(EditLine *el, int c __unused) argument
325 vi_replace_mode(EditLine *el, int c __unused) argument
341 vi_substitute_char(EditLine *el, int c __unused) argument
356 vi_substitute_line(EditLine *el, int c __unused) argument
374 vi_change_to_eol(EditLine *el, int c __unused) argument
392 vi_insert(EditLine *el, int c __unused) argument
407 vi_add(EditLine *el, int c __unused) argument
432 vi_add_at_eol(EditLine *el, int c __unused) argument
448 vi_delete_meta(EditLine *el, int c __unused) argument
461 vi_end_big_word(EditLine *el, int c) argument
485 vi_end_word(EditLine *el, int c __unused) argument
509 vi_undo(EditLine *el, int c __unused) argument
536 vi_command_mode(EditLine *el, int c __unused) argument
560 vi_zero(EditLine *el, int c) argument
581 vi_delete_prev_char(EditLine *el, int c __unused) argument
599 vi_list_or_eof(EditLine *el, int c) argument
636 vi_kill_line_prev(EditLine *el, int c __unused) argument
657 vi_search_prev(EditLine *el, int c __unused) argument
670 vi_search_next(EditLine *el, int c __unused) argument
683 vi_repeat_search_next(EditLine *el, int c __unused) argument
699 vi_repeat_search_prev(EditLine *el, int c __unused) argument
717 vi_next_char(EditLine *el, int c __unused) argument
729 vi_prev_char(EditLine *el, int c __unused) argument
741 vi_to_next_char(EditLine *el, int c __unused) argument
753 vi_to_prev_char(EditLine *el, int c __unused) argument
765 vi_repeat_next_char(EditLine *el, int c __unused) argument
779 vi_repeat_prev_char(EditLine *el, int c __unused) argument
797 vi_match(EditLine *el, int c) argument
844 vi_undo_line(EditLine *el, int c) argument
858 vi_to_column(EditLine *el, int c) argument
872 vi_yank_end(EditLine *el, int c) argument
886 vi_yank(EditLine *el, int c) argument
898 vi_comment_out(EditLine *el, int c) argument
916 vi_alias(EditLine *el, int c) argument
948 vi_to_history_line(EditLine *el, int c) argument
993 vi_histedit(EditLine *el, int c) argument
1050 vi_history_word(EditLine *el, int c) argument
1099 vi_redo(EditLine *el, int c) argument
[all...]
H A Dchared.c47 #include "el.h"
58 cv_undo(EditLine *el) argument
60 c_undo_t *vu = &el->el_chared.c_undo;
61 c_redo_t *r = &el->el_chared.c_redo;
65 size = el->el_line.lastchar - el->el_line.buffer;
67 vu->cursor = (int)(el->el_line.cursor - el->el_line.buffer);
68 memcpy(vu->buf, el->el_line.buffer, size);
71 r->count = el
82 cv_yank(EditLine *el, const char *ptr, int size) argument
95 c_insert(EditLine *el, int num) argument
117 c_delafter(EditLine *el, int num) argument
143 c_delafter1(EditLine *el) argument
158 c_delbefore(EditLine *el, int num) argument
186 c_delbefore1(EditLine *el) argument
277 cv_next_word(EditLine *el, char *p, char *high, int n, int (*wtest)(int)) argument
366 cv_delfini(EditLine *el) argument
448 ch_init(EditLine *el) argument
504 ch_reset(EditLine *el, int mclear) argument
532 ch__clearmacro(EditLine *el) argument
544 ch_enlargebufs(EditLine *el, size_t addlen) argument
628 ch_end(EditLine *el) argument
652 el_insertstr(EditLine *el, const char *s) argument
674 el_deletestr(EditLine *el, int n) argument
692 c_gets(EditLine *el, char *buf, const char *prompt) argument
757 c_hpos(EditLine *el) argument
[all...]
H A Dsearch.c51 #include "el.h"
56 #define EL_CURSOR(el) \
57 ((el)->el_line.cursor + (((el)->el_map.type == MAP_VI) && \
58 ((el)->el_map.current == (el)->el_map.alt)))
64 search_init(EditLine *el) argument
67 el->el_search.patbuf = (char *) el_malloc(EL_BUFSIZ);
68 if (el->el_search.patbuf == NULL)
70 el
83 search_end(EditLine *el) argument
152 c_hmatch(EditLine *el, const char *str) argument
167 c_setpat(EditLine *el) argument
198 ce_inc_search(EditLine *el, int dir) argument
444 cv_search(EditLine *el, int dir) argument
518 ce_search_line(EditLine *el, int dir) argument
560 cv_repeat_srch(EditLine *el, int c) argument
586 cv_csearch(EditLine *el, int direction, int ch, int count, int tflag) argument
[all...]
H A Dhist.h38 * el.hist.c: History functions
57 #define HIST_FUN(el, fn, arg) \
58 ((((*(el)->el_history.fun) ((el)->el_history.ref, &(el)->el_history.ev, \
59 fn, arg)) == -1) ? NULL : (el)->el_history.ev.str)
61 #define HIST_NEXT(el) HIST_FUN(el, H_NEXT, NULL)
62 #define HIST_FIRST(el) HIST_FUN(el, H_FIRS
[all...]
H A Del.c32 * $NetBSD: el.c,v 1.55 2009/07/25 21:19:23 christos Exp $
36 static char sccsid[] = "@(#)el.c 8.2 (Berkeley) 1/3/94";
42 * el.c: EditLine interface functions
52 #include "el.h"
63 EditLine *el = (EditLine *) el_malloc(sizeof(EditLine)); local
65 if (el == NULL)
68 memset(el, 0, sizeof(EditLine));
70 el->el_infile = fin;
71 el->el_outfile = fout;
72 el
110 el_end(EditLine *el) argument
137 el_reset(EditLine *el) argument
149 el_set(EditLine *el, int op, ...) argument
345 el_get(EditLine *el, int op, ...) argument
505 el_line(EditLine *el) argument
516 el_source(EditLine *el, const char *fname) argument
579 el_resize(EditLine *el) argument
600 el_beep(EditLine *el) argument
612 el_editmode(EditLine *el, int argc, const char **argv) argument
[all...]
H A Drefresh.c50 #include "el.h"
64 #define __F el->el_errfile
77 re_printstr(EditLine *el, const char *str, char *f, char *t) argument
94 re_nextline(EditLine *el) argument
96 el->el_refresh.r_cursor.h = 0; /* reset it. */
104 if (el->el_refresh.r_cursor.v + 1 >= el->el_term.t_size.v) {
105 int i, lins = el->el_term.t_size.v;
106 char *firstline = el->el_vdisplay[0];
109 el
126 re_addc(EditLine *el, int c) argument
166 re_putc(EditLine *el, int c, int shift) argument
193 re_refresh(EditLine *el) argument
329 re_goto_bottom(EditLine *el) argument
437 re_clear_eol(EditLine *el, int fx, int sx, int diff) argument
481 re_update_line(EditLine *el, char *old, char *new, int i) argument
972 re_refresh_cursor(EditLine *el) argument
1030 re_fastputc(EditLine *el, int c) argument
1076 re_fastaddc(EditLine *el) argument
1113 re_clear_display(EditLine *el) argument
1129 re_clear_lines(EditLine *el) argument
[all...]
H A Dprompt.c46 #include "el.h"
56 prompt_default(EditLine *el __unused)
69 prompt_default_r(EditLine *el __unused)
84 prompt_print(EditLine *el, int op) argument
91 elp = &el->el_prompt;
93 elp = &el->el_rprompt;
95 for (p = (*elp->p_func)(el); *p; p++) {
101 term__putc(el, *p);
103 re_putc(el, *p, 1);
106 elp->p_pos.v = el
115 prompt_init(EditLine *el) argument
144 prompt_set(EditLine *el, el_pfunc_t prf, char c, int op) argument
174 prompt_get(EditLine *el, el_pfunc_t *prf, char *c, int op) argument
[all...]
H A Dterm.c58 #include "el.h"
69 #define GoodStr(a) (el->el_term.t_str[a] != NULL && \
70 el->el_term.t_str[a][0] != '\0')
71 #define Str(a) el->el_term.t_str[a]
72 #define Val(a) el->el_term.t_val[a]
277 term_setflags(EditLine *el) argument
280 if (el->el_tty.t_tabs)
304 (void) fprintf(el->el_errfile,
306 (void) fprintf(el->el_errfile,
310 (void) fprintf(el
322 term_init(EditLine *el) argument
352 term_end(EditLine *el) argument
374 term_alloc(EditLine *el, const struct termcapstr *t, const char *cap) argument
438 term_rebuffer_display(EditLine *el) argument
457 term_alloc_display(EditLine *el) argument
500 term_free_display(EditLine *el) argument
527 term_move_to_line(EditLine *el, int where) argument
583 term_move_to_char(EditLine *el, int where) argument
671 term_overwrite(EditLine *el, const char *cp, size_t n) argument
715 term_deletechars(EditLine *el, int num) argument
756 term_insertwrite(EditLine *el, char *cp, int num) argument
815 term_clear_EOL(EditLine *el, int num) argument
833 term_clear_screen(EditLine *el) argument
854 term_beep(EditLine *el) argument
869 term_clear_to_bottom(EditLine *el) argument
879 term_get(EditLine *el, const char **term) argument
889 term_set(EditLine *el, const char *term) argument
978 term_get_size(EditLine *el, int *lins, int *cols) argument
1014 term_change_size(EditLine *el, int lins, int cols) argument
1034 term_init_arrow(EditLine *el) argument
1079 term_reset_arrow(EditLine *el) argument
1135 term_set_arrow(EditLine *el, const char *name, key_value_t *fun, int type) argument
1154 term_clear_arrow(EditLine *el, const char *name) argument
1172 term_print_arrow(EditLine *el, const char *name) argument
1189 term_bind_arrow(EditLine *el) argument
1254 term_tputs(EditLine *el, const char *cap, int affcnt) argument
1270 term__putc(EditLine *el, int c) argument
1280 term__flush(EditLine *el) argument
1290 term_writec(EditLine *el, int c) argument
1305 term_telltc(EditLine *el, int argc __unused, const char **argv __unused) argument
1347 term_settc(EditLine *el, int argc __unused, const char **argv) argument
1424 term_gettc(EditLine *el, int argc __unused, char **argv) argument
1478 term_echotc(EditLine *el, int argc __unused, const char **argv) argument
[all...]
H A Dtty.c47 #include "el.h"
446 #define tty_getty(el, td) tcgetattr((el)->el_infd, (td))
447 #define tty_setty(el, td) tcsetattr((el)->el_infd, TCSADRAIN, (td))
466 tty_setup(EditLine *el) argument
470 if (el->el_flags & EDIT_DISABLED)
473 if (tty_getty(el, &el->el_tty.t_ed) == -1) {
475 (void) fprintf(el
529 tty_init(EditLine *el) argument
841 tty_bind_char(EditLine *el, int force) argument
887 tty_rawmode(EditLine *el) argument
1015 tty_cookedmode(EditLine *el) argument
1041 tty_quotemode(EditLine *el) argument
1076 tty_noquotemode(EditLine *el) argument
1098 tty_stty(EditLine *el, int argc __unused, const char **argv) argument
1241 tty_printchar(EditLine *el, unsigned char *s) argument
[all...]
H A Dmap.c46 #include "el.h"
891 map_init(EditLine *el) argument
899 EL_ABORT((el->errfile, "Emacs map incorrect\n"));
901 EL_ABORT((el->errfile, "Vi command map incorrect\n"));
903 EL_ABORT((el->errfile, "Vi insert map incorrect\n"));
906 el->el_map.alt = (el_action_t *)el_malloc(sizeof(el_action_t) * N_KEYS);
907 if (el->el_map.alt == NULL)
909 el->el_map.key = (el_action_t *)el_malloc(sizeof(el_action_t) * N_KEYS);
910 if (el->el_map.key == NULL)
912 el
941 map_end(EditLine *el) argument
962 map_init_nls(EditLine *el) argument
978 map_init_meta(EditLine *el) argument
1019 map_init_vi(EditLine *el) argument
1049 map_init_emacs(EditLine *el) argument
1083 map_set_editor(EditLine *el, char *editor) argument
1102 map_get_editor(EditLine *el, const char **editor) argument
1123 map_print_key(EditLine *el, el_action_t *map, const char *in) argument
1146 map_print_some_keys(EditLine *el, el_action_t *map, int first, int last) argument
1210 map_print_all_keys(EditLine *el) argument
1245 map_bind(EditLine *el, int argc, const char **argv) argument
1395 map_addfunc(EditLine *el, const char *name, const char *help, el_func_t func) argument
[all...]
H A Dkey.c47 * number of characters. This module maintains a map (the el->el_key.map)
54 * are in el->el_key.map, adding the key "abc" will cause the first two
65 #include "el.h"
68 * The Nodes of the el->el_key.map. The el->el_key.map is a linked list
99 key_init(EditLine *el) argument
102 el->el_key.buf = (char *) el_malloc(KEY_BUFSIZ);
103 if (el->el_key.buf == NULL)
105 el->el_key.map = NULL;
106 key_reset(el);
114 key_end(EditLine *el) argument
127 key_map_cmd(EditLine *el, int cmd) argument
139 key_map_str(EditLine *el, char *str) argument
153 key_reset(EditLine *el) argument
171 key_get(EditLine *el, char *ch, key_value_t *val) argument
185 key_add(EditLine *el, const char *key, key_value_t *val, int ntype) argument
213 key_clear(EditLine *el, el_action_t *map, const char *in) argument
230 key_delete(EditLine *el, const char *key) argument
251 key_print(EditLine *el, const char *key) argument
272 node_trav(EditLine *el, key_node_t *ptr, char *ch, key_value_t *val) argument
309 node__try(EditLine *el, key_node_t *ptr, const char *str, key_value_t *val, int ntype) argument
371 node__delete(EditLine *el, key_node_t **inptr, const char *str) argument
419 node__put(EditLine *el, key_node_t *ptr) argument
481 node_lookup(EditLine *el, const char *str, key_node_t *ptr, size_t cnt) argument
531 node_enum(EditLine *el, key_node_t *ptr, size_t cnt) argument
573 key_kprint(EditLine *el, const char *key, key_value_t *val, int ntype) argument
[all...]
H A Dsig.c47 #include "el.h"
112 sig_init(EditLine *el) argument
117 el->el_signal = el_malloc(sizeof(*el->el_signal));
118 if (el->el_signal == NULL)
121 nset = &el->el_signal->sig_set;
129 el->el_signal->sig_action[i].sa_handler = SIG_ERR;
130 el->el_signal->sig_action[i].sa_flags = 0;
131 sigemptyset(&el->el_signal->sig_action[i].sa_mask);
144 sig_end(EditLine *el) argument
156 sig_set(EditLine *el) argument
183 sig_clr(EditLine *el) argument
[all...]
H A Dfilecomplete.c48 #include "el.h"
333 fn_display_match_list(EditLine *el, char **matches, size_t len, size_t max) argument
336 int screenwidth = el->el_term.t_size.h;
359 (void)fprintf(el->el_outfile, "%-*s%s", (int)max,
362 (void)fprintf(el->el_outfile, "\n");
380 fn_complete(EditLine *el, argument
399 if (el->el_state.lastcmd == el->el_state.thiscmd)
412 li = el_line(el);
479 el_deletestr(el, (in
564 _el_fn_complete(EditLine *el, int ch __attribute__((__unused__))) argument
661 _el_fn_sh_complete(EditLine *el, int ch __attribute__((__unused__))) argument
[all...]
/freebsd-9.3-release/bin/sh/
H A Dmyhistedit.h36 extern EditLine *el;
H A Dhistedit.c68 EditLine *el; /* editline cookie */ variable
100 if (editing && !el && isatty(0)) { /* && isatty(2) ??? */
120 el = el_init(arg0, el_in, el_out, el_err);
121 if (el != NULL) {
123 el_set(el, EL_HIST, history, hist);
124 el_set(el, EL_PROMPT, getprompt);
125 el_set(el, EL_ADDFN, "sh-complete",
133 } else if (!editing && el) {
135 el_end(el);
136 el
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dalist.c57 alist_el_t *el = arg; local
58 uintptr_t num = (uintptr_t)el->ale_name;
96 alist_el_t *el = arg1; local
99 alist->al_namefree(el->ale_name);
101 alist->al_valfree(el->ale_name);
102 free(el);
115 alist_el_t *el; local
117 el = xmalloc(sizeof (alist_el_t));
118 el->ale_name = name;
119 el
149 alist_el_t *el = arg1; local
201 alist_el_t *el = node; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dportlist.c139 dns_element_t *el; local
147 el = find_port(portlist->list, portlist->active, port);
148 if (el != NULL) {
150 el->flags |= DNS_PL_INET;
152 el->flags |= DNS_PL_INET6;
161 el = isc_mem_get(portlist->mctx, sizeof(*el) * allocated);
162 if (el == NULL) {
167 memmove(el, portlist->list,
168 portlist->allocated * sizeof(*el));
190 dns_element_t *el; local
216 dns_element_t *el; local
[all...]
/freebsd-9.3-release/contrib/libucl/uthash/
H A Dutlist.h419 #define LL_COUNT(head,el,counter) \
420 LL_COUNT2(head,el,counter,next) \
422 #define LL_COUNT2(head,el,counter,next) \
425 LL_FOREACH2(head,el,next){ ++counter; } \
428 #define LL_FOREACH(head,el) \
429 LL_FOREACH2(head,el,next)
431 #define LL_FOREACH2(head,el,next) \
432 for(el=head;el;el
[all...]
/freebsd-9.3-release/lib/libedit/TEST/
H A Dtest.c69 prompt(EditLine *el) argument
84 complete(EditLine *el, int ch) argument
89 const LineInfo *lf = el_line(el);
105 if (el_insertstr(el, &dp->d_name[len]) == -1)
119 EditLine *el = NULL; local
142 el = el_init(*argv, stdin, stdout, stderr);
144 el_set(el, EL_EDITOR, "vi"); /* Default editor is vi */
145 el_set(el, EL_SIGNAL, 1); /* Handle signals gracefully */
146 el_set(el, EL_PROMPT, prompt); /* Set the prompt function */
149 el_set(el, EL_HIS
[all...]
/freebsd-9.3-release/share/mk/
H A Dbsd.endian.mk7 ${MACHINE_ARCH:Mmips*el} != ""
/freebsd-9.3-release/usr.bin/bc/
H A Dextern.h39 extern EditLine *el;

Completed in 131 milliseconds

12345