1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef BASE64_H
- #define BASE64_H
- PHP_FUNCTION(base64_decode);
- PHP_FUNCTION(base64_encode);
- PHPAPI extern unsigned char *php_base64_encode(const unsigned char *, int, int *);
- PHPAPI extern unsigned char *php_base64_decode_ex(const unsigned char *, int, int *, zend_bool);
- PHPAPI extern unsigned char *php_base64_decode(const unsigned char *, int, int *);
- #endif
|