1/* ex_getln.c */
2char_u *getcmdline __ARGS((int firstc, long count, int indent));
3char_u *getcmdline_prompt __ARGS((int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg));
4int text_locked __ARGS((void));
5void text_locked_msg __ARGS((void));
6int curbuf_locked __ARGS((void));
7int allbuf_locked __ARGS((void));
8char_u *getexline __ARGS((int c, void *cookie, int indent));
9char_u *getexmodeline __ARGS((int promptc, void *cookie, int indent));
10int cmdline_overstrike __ARGS((void));
11int cmdline_at_end __ARGS((void));
12colnr_T cmdline_getvcol_cursor __ARGS((void));
13void free_cmdline_buf __ARGS((void));
14void putcmdline __ARGS((int c, int shift));
15void unputcmdline __ARGS((void));
16int put_on_cmdline __ARGS((char_u *str, int len, int redraw));
17char_u *save_cmdline_alloc __ARGS((void));
18void restore_cmdline_alloc __ARGS((char_u *p));
19void cmdline_paste_str __ARGS((char_u *s, int literally));
20void redrawcmdline __ARGS((void));
21void redrawcmd __ARGS((void));
22void compute_cmdrow __ARGS((void));
23void gotocmdline __ARGS((int clr));
24char_u *ExpandOne __ARGS((expand_T *xp, char_u *str, char_u *orig, int options, int mode));
25void ExpandInit __ARGS((expand_T *xp));
26void ExpandCleanup __ARGS((expand_T *xp));
27void ExpandEscape __ARGS((expand_T *xp, char_u *str, int numfiles, char_u **files, int options));
28char_u *vim_strsave_fnameescape __ARGS((char_u *fname, int shell));
29void tilde_replace __ARGS((char_u *orig_pat, int num_files, char_u **files));
30char_u *sm_gettail __ARGS((char_u *s));
31char_u *addstar __ARGS((char_u *fname, int len, int context));
32void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col));
33int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches));
34int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int))));
35char_u *globpath __ARGS((char_u *path, char_u *file, int expand_options));
36void init_history __ARGS((void));
37int get_histtype __ARGS((char_u *name));
38void add_to_history __ARGS((int histype, char_u *new_entry, int in_map, int sep));
39int get_history_idx __ARGS((int histype));
40char_u *get_cmdline_str __ARGS((void));
41int get_cmdline_pos __ARGS((void));
42int set_cmdline_pos __ARGS((int pos));
43int get_cmdline_type __ARGS((void));
44char_u *get_history_entry __ARGS((int histype, int idx));
45int clr_history __ARGS((int histype));
46int del_history_entry __ARGS((int histype, char_u *str));
47int del_history_idx __ARGS((int histype, int idx));
48void remove_key_from_history __ARGS((void));
49int get_list_range __ARGS((char_u **str, int *num1, int *num2));
50void ex_history __ARGS((exarg_T *eap));
51void prepare_viminfo_history __ARGS((int asklen));
52int read_viminfo_history __ARGS((vir_T *virp));
53void finish_viminfo_history __ARGS((void));
54void write_viminfo_history __ARGS((FILE *fp));
55void cmd_pchar __ARGS((int c, int offset));
56int cmd_gchar __ARGS((int offset));
57char_u *script_get __ARGS((exarg_T *eap, char_u *cmd));
58/* vim: set ft=c : */
59