comparison src/crypt_zip.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 4aead6a9b7a9
children 2dcaa860e3fc
comparison
equal deleted inserted replaced
14861:41fbdae837df 14862:27b9a84395b5
33 /* The state of encryption, referenced by cryptstate_T. */ 33 /* The state of encryption, referenced by cryptstate_T. */
34 typedef struct { 34 typedef struct {
35 u32_T keys[3]; 35 u32_T keys[3];
36 } zip_state_T; 36 } zip_state_T;
37 37
38
39 static void make_crc_tab(void);
40 38
41 static u32_T crc_32_table[256]; 39 static u32_T crc_32_table[256];
42 40
43 /* 41 /*
44 * Fill the CRC table, if not done already. 42 * Fill the CRC table, if not done already.