base64.h 785 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. Encode or decode file as MIME base64 (RFC 1341)
  3. by John Walker
  4. http://www.fourmilab.ch/
  5. This program is in the public domain.
  6. */
  7. struct buffer_st {
  8. char *data;
  9. int length;
  10. char *ptr;
  11. int offset;
  12. };
  13. void buffer_new(struct buffer_st *b);
  14. void buffer_add(struct buffer_st *b, char c);
  15. void buffer_delete(struct buffer_st *b);
  16. void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length);
  17. void base64_decode_xmlrpc(struct buffer_st *b, const char *source, int length);
  18. /*
  19. #define DEBUG_MALLOC
  20. */
  21. #ifdef DEBUG_MALLOC
  22. void *_malloc_real(size_t s, char *file, int line);
  23. void _free_real(void *p, char *file, int line);
  24. #define malloc(s) _malloc_real(s,__FILE__,__LINE__)
  25. #define free(p) _free_real(p, __FILE__,__LINE__)
  26. #endif