1/* getchar.c */ 2void free_buff(buffheader_T *buf); 3char_u *get_recorded(void); 4char_u *get_inserted(void); 5int stuff_empty(void); 6int readbuf1_empty(void); 7void typeahead_noflush(int c); 8void flush_buffers(flush_buffers_T flush_typeahead); 9void ResetRedobuff(void); 10void CancelRedo(void); 11void saveRedobuff(save_redo_T *save_redo); 12void restoreRedobuff(save_redo_T *save_redo); 13void AppendToRedobuff(char_u *s); 14void AppendToRedobuffLit(char_u *str, int len); 15void AppendCharToRedobuff(int c); 16void AppendNumberToRedobuff(long n); 17void stuffReadbuff(char_u *s); 18void stuffRedoReadbuff(char_u *s); 19void stuffReadbuffLen(char_u *s, long len); 20void stuffReadbuffSpec(char_u *s); 21void stuffcharReadbuff(int c); 22void stuffnumReadbuff(long n); 23int start_redo(long count, int old_redo); 24int start_redo_ins(void); 25void stop_redo_ins(void); 26int noremap_keys(void); 27int ins_typebuf(char_u *str, int noremap, int offset, int nottyped, int silent); 28void ins_char_typebuf(int c); 29int typebuf_changed(int tb_change_cnt); 30int typebuf_typed(void); 31int typebuf_maplen(void); 32void del_typebuf(int len, int offset); 33int save_typebuf(void); 34void save_typeahead(tasave_T *tp); 35void restore_typeahead(tasave_T *tp); 36void openscript(char_u *name, int directly); 37void close_all_scripts(void); 38int using_script(void); 39void before_blocking(void); 40int vgetc(void); 41int safe_vgetc(void); 42int plain_vgetc(void); 43int vpeekc(void); 44int vpeekc_nomap(void); 45int vpeekc_any(void); 46int char_avail(void); 47void f_getchar(typval_T *argvars, typval_T *rettv); 48void f_getcharmod(typval_T *argvars, typval_T *rettv); 49void parse_queued_messages(void); 50void vungetc(int c); 51int fix_input_buffer(char_u *buf, int len); 52int input_available(void); 53/* vim: set ft=c : */ 54