diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-05 10:11:41 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-05 10:11:41 +0000 |
commit | 4031104404c6ceed5e57134125dcdb6cac51c564 (patch) | |
tree | 18bd035e58e42180cf416d0d94d4726cd44d9d7f /lib/base64.h | |
parent | 9f9cac7402f9f134be6f6d5b7fb830e9946a83d8 (diff) | |
download | curl-4031104404c6ceed5e57134125dcdb6cac51c564.tar.gz |
Internal symbols that aren't static are now prefixed with 'Curl_'
Diffstat (limited to 'lib/base64.h')
-rw-r--r-- | lib/base64.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/base64.h b/lib/base64.h index dbd94ca0c..c7f0dbf3a 100644 --- a/lib/base64.h +++ b/lib/base64.h @@ -34,6 +34,7 @@ #ifndef __BASE64_H #define __BASE64_H -int base64_encode(const void *data, int size, char **str); +int Curl_base64_encode(const void *data, int size, char **str); +int Curl_base64_decode(const char *str, void *data); #endif |