diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-02 04:28:46 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-02 04:28:46 +0000 |
commit | 5be409c981e54efd335f311f082bc6a3dc18fadf (patch) | |
tree | 609b43d713ac62eab883acd5521b761c9ed1955c /MySpace/formatting.h | |
parent | 3413f527f0945d08dc9102e75b2d9630d6855ed1 (diff) |
fix for nick formatting
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@238 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'MySpace/formatting.h')
-rw-r--r-- | MySpace/formatting.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/MySpace/formatting.h b/MySpace/formatting.h index b7342d2..02b2dec 100644 --- a/MySpace/formatting.h +++ b/MySpace/formatting.h @@ -1,8 +1,11 @@ #ifndef _FORMATTING_INC
#define _FORMATTING_INC
-void entitize(char *buff, int size);
-void unentitize(char *buff);
+void entitize_msg(char *buff, int size);
+void unentitize_msg(char *buff);
+
+void entitize_nick(char *buff, int size);
+void unentitize_nick(char *buff);
void strip_tags(char *buff);
|