diff src/util.h @ 8461:16485e87b7bb

[gaim-migrate @ 9191] Fix a problem displaying AIM tooltips with the dude or chick has an away message containing an unmatched < This breaks the string freeze horrendously. I'm afraid every string for every language will have to be retranslated. Sorry. Just kidding. Really. Don't hate me because I'm beautiful. This commit brought to you by the follow quote: "Chewie, take the professor in the back and plug him into the hyperdrive." committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 17 Mar 2004 02:25:03 +0000
parents 3d0178c4f390
children 599d6ac9bbfe
line wrap: on
line diff
--- a/src/util.h	Tue Mar 16 20:48:21 2004 +0000
+++ b/src/util.h	Wed Mar 17 02:25:03 2004 +0000
@@ -454,6 +454,9 @@
  * @param delimiter The substring you want replaced.
  * @param replacement The substring you want inserted in place
  *        of the delimiting substring.
+ *
+ * @return A new string, after performing the substitution.
+ *         free this with g_free().
  */
 gchar *gaim_strreplace(const char *string, const char *delimiter,
 					   const char *replacement);
@@ -466,6 +469,9 @@
  * @param delimiter The substring you want replaced.
  * @param replacement The substring you want inserted in place
  *        of the delimiting substring.
+ *
+ * @return A new string, after performing the substitution.
+ *         free this with g_free().
  */
 gchar *gaim_strcasereplace(const char *string, const char *delimiter,
 						   const char *replacement);