annotate src/proto/crypt_zip.pro @ 6524:8ff2d1b611bf
v7.4.589
updated for version 7.4.589
Problem: In the MS-Windows console Vim can't handle greek characters when
encoding is utf-8.
Solution: Escape K_NUL. (Yasuhiro Matsumoto)
author |
Bram Moolenaar <bram@vim.org> |
date |
Tue, 20 Jan 2015 19:39:35 +0100 |
parents |
18ac55444b37 |
children |
21b0a39d13ed |
rev |
line source |
6122
|
1 /* crypt_zip.c */
|
|
2 void crypt_zip_init __ARGS((cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len));
|
|
3 void crypt_zip_encode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to));
|
|
4 void crypt_zip_decode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to));
|
|
5 /* vim: set ft=c : */
|