Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* option.c */ |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 2 | extern void set_init_1 __ARGS((void)); |
| 3 | extern void set_string_default __ARGS((char *name, char_u *val)); |
| 4 | extern void set_number_default __ARGS((char *name, long val)); |
| 5 | extern void free_all_options __ARGS((void)); |
| 6 | extern void set_init_2 __ARGS((void)); |
| 7 | extern void set_init_3 __ARGS((void)); |
| 8 | extern void set_helplang_default __ARGS((char_u *lang)); |
| 9 | extern void init_gui_options __ARGS((void)); |
| 10 | extern void set_title_defaults __ARGS((void)); |
| 11 | extern int do_set __ARGS((char_u *arg, int opt_flags)); |
| 12 | extern void set_options_bin __ARGS((int oldval, int newval, int opt_flags)); |
| 13 | extern int get_viminfo_parameter __ARGS((int type)); |
| 14 | extern char_u *find_viminfo_parameter __ARGS((int type)); |
| 15 | extern void check_options __ARGS((void)); |
| 16 | extern void check_buf_options __ARGS((buf_T *buf)); |
| 17 | extern void free_string_option __ARGS((char_u *p)); |
| 18 | extern void clear_string_option __ARGS((char_u **pp)); |
| 19 | extern void set_term_option_alloced __ARGS((char_u **p)); |
| 20 | extern int was_set_insecurely __ARGS((char_u *opt, int opt_flags)); |
| 21 | extern void set_string_option_direct __ARGS((char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid)); |
| 22 | extern char_u *check_stl_option __ARGS((char_u *s)); |
| 23 | extern int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int opt_flags)); |
| 24 | extern void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags)); |
| 25 | extern char_u *get_term_code __ARGS((char_u *tname)); |
| 26 | extern char_u *get_highlight_default __ARGS((void)); |
| 27 | extern char_u *get_encoding_default __ARGS((void)); |
| 28 | extern int makeset __ARGS((FILE *fd, int opt_flags, int local_only)); |
| 29 | extern int makefoldset __ARGS((FILE *fd)); |
| 30 | extern void clear_termoptions __ARGS((void)); |
| 31 | extern void free_termoptions __ARGS((void)); |
| 32 | extern void set_term_defaults __ARGS((void)); |
| 33 | extern void comp_col __ARGS((void)); |
| 34 | extern char_u *get_equalprg __ARGS((void)); |
| 35 | extern void win_copy_options __ARGS((win_T *wp_from, win_T *wp_to)); |
| 36 | extern void copy_winopt __ARGS((winopt_T *from, winopt_T *to)); |
| 37 | extern void check_win_options __ARGS((win_T *win)); |
| 38 | extern void check_winopt __ARGS((winopt_T *wop)); |
| 39 | extern void clear_winopt __ARGS((winopt_T *wop)); |
| 40 | extern void buf_copy_options __ARGS((buf_T *buf, int flags)); |
| 41 | extern void reset_modifiable __ARGS((void)); |
| 42 | extern void set_iminsert_global __ARGS((void)); |
| 43 | extern void set_imsearch_global __ARGS((void)); |
| 44 | extern void set_context_in_set_cmd __ARGS((expand_T *xp, char_u *arg, int opt_flags)); |
| 45 | extern int ExpandSettings __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file)); |
| 46 | extern int ExpandOldSetting __ARGS((int *num_file, char_u ***file)); |
| 47 | extern int has_format_option __ARGS((int x)); |
| 48 | extern int shortmess __ARGS((int x)); |
| 49 | extern void vimrc_found __ARGS((char_u *fname, char_u *envname)); |
| 50 | extern void change_compatible __ARGS((int on)); |
| 51 | extern int option_was_set __ARGS((char_u *name)); |
| 52 | extern int can_bs __ARGS((int what)); |
| 53 | extern void save_file_ff __ARGS((buf_T *buf)); |
| 54 | extern int file_ff_differs __ARGS((buf_T *buf)); |
| 55 | extern int check_ff_value __ARGS((char_u *p)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 56 | /* vim: set ft=c : */ |