diff options
author | Antony Dovgal <tony2001@php.net> | 2008-08-14 10:12:21 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2008-08-14 10:12:21 +0000 |
commit | a61c0c84141981e4ca6764319b3d05b18e14b895 (patch) | |
tree | 005425fc32a5a25d033b49f5cc2e244d9884db6e /ext/standard/quot_print.h | |
parent | 593e7c7da413ef239c33588ced182087503f8234 (diff) | |
download | php-git-a61c0c84141981e4ca6764319b3d05b18e14b895.tar.gz |
MFH: add quoted_printable_encode()
Diffstat (limited to 'ext/standard/quot_print.h')
-rw-r--r-- | ext/standard/quot_print.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/quot_print.h b/ext/standard/quot_print.h index a98ff64ea7..ffc2579dcd 100644 --- a/ext/standard/quot_print.h +++ b/ext/standard/quot_print.h @@ -22,7 +22,9 @@ #define QUOT_PRINT_H PHPAPI unsigned char *php_quot_print_decode(const unsigned char *str, size_t length, size_t *ret_length, int replace_us_by_ws); +PHPAPI unsigned char *php_quot_print_encode(const unsigned char *str, size_t length, size_t *ret_length); PHP_FUNCTION(quoted_printable_decode); +PHP_FUNCTION(quoted_printable_encode); #endif /* QUOT_PRINT_H */ |