@@ -199,11 +199,11 @@ void sqlcipher_exportFunc(sqlite3_context *, int, sqlite3_value **);
199199
200200/* crypto_impl.c functions */
201201
202- void sqlcipher_init_memmethods ();
202+ void sqlcipher_init_memmethods (void );
203203
204204/* activation and initialization */
205- void sqlcipher_activate ();
206- void sqlcipher_deactivate ();
205+ void sqlcipher_activate (void );
206+ void sqlcipher_deactivate (void );
207207
208208int sqlcipher_codec_ctx_init (codec_ctx * * , Db * , Pager * , sqlite3_file * , const void * , int );
209209void sqlcipher_codec_ctx_free (codec_ctx * * );
@@ -225,10 +225,10 @@ int sqlcipher_codec_ctx_get_pagesize(codec_ctx *);
225225int sqlcipher_codec_ctx_get_reservesize (codec_ctx * );
226226
227227void sqlcipher_set_default_pagesize (int page_size );
228- int sqlcipher_get_default_pagesize ();
228+ int sqlcipher_get_default_pagesize (void );
229229
230230void sqlcipher_set_default_kdf_iter (int iter );
231- int sqlcipher_get_default_kdf_iter ();
231+ int sqlcipher_get_default_kdf_iter (void );
232232int sqlcipher_codec_ctx_set_kdf_iter (codec_ctx * , int );
233233int sqlcipher_codec_ctx_get_kdf_iter (codec_ctx * ctx );
234234
@@ -243,10 +243,10 @@ const char* sqlcipher_codec_ctx_get_cipher(codec_ctx *ctx);
243243void * sqlcipher_codec_ctx_get_data (codec_ctx * );
244244
245245void sqlcipher_set_default_use_hmac (int use );
246- int sqlcipher_get_default_use_hmac ();
246+ int sqlcipher_get_default_use_hmac (void );
247247
248248void sqlcipher_set_hmac_salt_mask (unsigned char mask );
249- unsigned char sqlcipher_get_hmac_salt_mask ();
249+ unsigned char sqlcipher_get_hmac_salt_mask (void );
250250
251251int sqlcipher_codec_ctx_set_use_hmac (codec_ctx * ctx , int use );
252252int sqlcipher_codec_ctx_get_use_hmac (codec_ctx * ctx );
@@ -270,22 +270,22 @@ int sqlcipher_codec_hmac_sha1(const codec_ctx *ctx, const unsigned char *hmac_ke
270270 unsigned char * out );
271271
272272int sqlcipher_set_default_plaintext_header_size (int size );
273- int sqlcipher_get_default_plaintext_header_size ();
273+ int sqlcipher_get_default_plaintext_header_size (void );
274274int sqlcipher_codec_ctx_set_plaintext_header_size (codec_ctx * ctx , int size );
275275int sqlcipher_codec_ctx_get_plaintext_header_size (codec_ctx * ctx );
276276
277277int sqlcipher_set_default_hmac_algorithm (int algorithm );
278- int sqlcipher_get_default_hmac_algorithm ();
278+ int sqlcipher_get_default_hmac_algorithm (void );
279279int sqlcipher_codec_ctx_set_hmac_algorithm (codec_ctx * ctx , int algorithm );
280280int sqlcipher_codec_ctx_get_hmac_algorithm (codec_ctx * ctx );
281281
282282int sqlcipher_set_default_kdf_algorithm (int algorithm );
283- int sqlcipher_get_default_kdf_algorithm ();
283+ int sqlcipher_get_default_kdf_algorithm (void );
284284int sqlcipher_codec_ctx_set_kdf_algorithm (codec_ctx * ctx , int algorithm );
285285int sqlcipher_codec_ctx_get_kdf_algorithm (codec_ctx * ctx );
286286
287287void sqlcipher_set_mem_security (int );
288- int sqlcipher_get_mem_security ();
288+ int sqlcipher_get_mem_security (void );
289289
290290int sqlcipher_find_db_index (sqlite3 * db , const char * zDb );
291291
0 commit comments