comparison src/proto/getchar.pro @ 18094:a1396a35444c v8.1.2042

patch 8.1.2042: the evalfunc.c file is too big Commit: https://github.com/vim/vim/commit/9c658c9eacbd97e2c071f652a0155f71db94c0f3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 15 21:00:54 2019 +0200 patch 8.1.2042: the evalfunc.c file is too big Problem: The evalfunc.c file is too big. Solution: Move getchar() and parse_queued_messages() to getchar.c.
author Bram Moolenaar <Bram@vim.org>
date Sun, 15 Sep 2019 21:15:03 +0200
parents 0f7ae8010787
children 14d2a210fab1
comparison
equal deleted inserted replaced
18093:18c77f2ec0d9 18094:a1396a35444c
42 int plain_vgetc(void); 42 int plain_vgetc(void);
43 int vpeekc(void); 43 int vpeekc(void);
44 int vpeekc_nomap(void); 44 int vpeekc_nomap(void);
45 int vpeekc_any(void); 45 int vpeekc_any(void);
46 int char_avail(void); 46 int char_avail(void);
47 void f_getchar(typval_T *argvars, typval_T *rettv);
48 void f_getcharmod(typval_T *argvars, typval_T *rettv);
49 void parse_queued_messages(void);
47 void vungetc(int c); 50 void vungetc(int c);
48 int fix_input_buffer(char_u *buf, int len); 51 int fix_input_buffer(char_u *buf, int len);
49 int input_available(void); 52 int input_available(void);
50 /* vim: set ft=c : */ 53 /* vim: set ft=c : */