summaryrefslogtreecommitdiff
path: root/ext/standard/quot_print.h
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2003-12-02 07:36:42 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2003-12-02 07:36:42 +0000
commit3c02eb1ffe031d74f1792477979b787a46486636 (patch)
treee8e535e6573d8fa9d1235e4cf550839d677c1232 /ext/standard/quot_print.h
parente9f7e144608df36473490a5bd4b40c54bad83f0f (diff)
downloadphp-git-3c02eb1ffe031d74f1792477979b787a46486636.tar.gz
all '_' (underscores) should be replaced by '\x20' (whitespaces)
in encoding. # should I bump API version?
Diffstat (limited to 'ext/standard/quot_print.h')
-rw-r--r--ext/standard/quot_print.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/quot_print.h b/ext/standard/quot_print.h
index 8588366249..dff3a0cac5 100644
--- a/ext/standard/quot_print.h
+++ b/ext/standard/quot_print.h
@@ -21,7 +21,7 @@
#ifndef QUOT_PRINT_H
#define QUOT_PRINT_H
-PHPAPI unsigned char *php_quot_print_decode(const unsigned char *str, size_t length, size_t *ret_length);
+PHPAPI unsigned char *php_quot_print_decode(const unsigned char *str, size_t length, size_t *ret_length, int replace_us_by_ws);
PHP_FUNCTION(quoted_printable_decode);