comparison src/hangulin.c @ 14862:27b9a84395b5 v8.1.0443

patch 8.1.0443: unnecessary static function prototypes commit https://github.com/vim/vim/commit/6dff58f15cede9139b2fcfc64c9064326ea3d3b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 30 21:43:26 2018 +0200 patch 8.1.0443: unnecessary static function prototypes Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Sep 2018 21:45:07 +0200
parents 66f1b5bf3fa6
children 55ccc2d353bd
comparison
equal deleted inserted replaced
14861:41fbdae837df 14862:27b9a84395b5
35 static int last_l = -1, last_ll = -1; 35 static int last_l = -1, last_ll = -1;
36 static int hangul_keyboard_type = HANGUL_DEFAULT_KEYBOARD; 36 static int hangul_keyboard_type = HANGUL_DEFAULT_KEYBOARD;
37 37
38 static void convert_ks_to_3(const char_u *src, int *fp, int *mp, int *lp); 38 static void convert_ks_to_3(const char_u *src, int *fp, int *mp, int *lp);
39 static int convert_3_to_ks(int fv, int mv, int lv, char_u *des); 39 static int convert_3_to_ks(int fv, int mv, int lv, char_u *des);
40 static int hangul_automata2(char_u *buf, unsigned int *c);
41 static int hangul_automata3(char_u *buf, unsigned int *c);
42 40
43 #define push(x) {stack[ sp++ ] = *(x); stack[sp++] = *((x)+1);} 41 #define push(x) {stack[ sp++ ] = *(x); stack[sp++] = *((x)+1);}
44 #define pop(x) {*((x) + 1) = stack[--sp]; *(x) = stack[--sp];} 42 #define pop(x) {*((x) + 1) = stack[--sp]; *(x) = stack[--sp];}
45 #define query(x) {*((x) + 1) = stack[sp - 1]; *(x) = stack[sp - 2];} 43 #define query(x) {*((x) + 1) = stack[sp - 1]; *(x) = stack[sp - 2];}
46 44