Mercurial > vim
annotate src/proto/crypt_zip.pro @ 8364:991d8fd4d841 v7.4.1474
commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Mar 2 22:16:32 2016 +0100
patch 7.4.1474
Problem: Compiler warnings without the float feature.
Solution: Move #ifdefs. (John Marriott)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 02 Mar 2016 22:30:05 +0100 |
parents | 21b0a39d13ed |
children | a1229400434a |
rev | line source |
---|---|
6122 | 1 /* crypt_zip.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6122
diff
changeset
|
2 void crypt_zip_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6122
diff
changeset
|
3 void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6122
diff
changeset
|
4 void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to); |
6122 | 5 /* vim: set ft=c : */ |