diff src/util.h @ 5451:e1cc0c67e123

[gaim-migrate @ 5839] some compile cleanups, and more importantly, the rest of that tobase16 fix that I forgot about committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 20 May 2003 01:31:56 +0000
parents 8d8bf0d31a23
children 3c7748b24410
line wrap: on
line diff
--- a/src/util.h	Tue May 20 00:45:35 2003 +0000
+++ b/src/util.h	Tue May 20 01:31:56 2003 +0000
@@ -73,14 +73,14 @@
  *
  * @see frombase16()
  */
-char *tobase16(const char *str, int len);
+unsigned char *tobase16(const unsigned char *str, int len);
 
 /**
  * Converts a string back from its base-16 equivalent.
  *
  * @param str     The string to convert back.
  * @param ret_str The returned, non-base-16 string.
- * 
+ *
  * @return The length of the returned string.
  *
  * @see tobase16()