comparison src/util.h @ 5497:3c7748b24410

[gaim-migrate @ 5893] I changed some small things. 1) 3 comments in 3 different files which makes "make docs" not give 3 warnings. 2) Made frombase16 return-via-parameter an unsigned char* instead of a char*. Nothing actually uses frombase16, so this doesn't affect anything, but it mirrors Nathan's change to tobase16, and should make the conversion work correctly. 3) Fixed the bug Luke mailed to gaim-devel on Monday: "sign on, change an aim account's email address, sign off, segfault. it's happened 2x now" --Luke "The Yellow Dart" Schierer committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 23 May 2003 01:45:17 +0000
parents e1cc0c67e123
children 439a05a6b409
comparison
equal deleted inserted replaced
5496:b7c0be69c749 5497:3c7748b24410
83 * 83 *
84 * @return The length of the returned string. 84 * @return The length of the returned string.
85 * 85 *
86 * @see tobase16() 86 * @see tobase16()
87 */ 87 */
88 int frombase16(const char *str, char **ret_str); 88 int frombase16(const char *str, unsigned char **ret_str);
89 89
90 /** 90 /**
91 * Waits for all child processes to terminate. 91 * Waits for all child processes to terminate.
92 */ 92 */
93 void clean_pid(void); 93 void clean_pid(void);