12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef PHP_UUENCODE_H
- #define PHP_UUENCODE_H
- PHP_FUNCTION(convert_uudecode);
- PHP_FUNCTION(convert_uuencode);
- PHPAPI int php_uudecode(char *src, int src_len, char **dest);
- PHPAPI int php_uuencode(char *src, int src_len, char **dest);
- #endif
|