1 2 3 4 5 6 7 8 9 10 11 12
#ifndef _FORMATTING_INC #define _FORMATTING_INC void entitize(char *buff, int size); void unentitize(char *buff); void strip_tags(char *buff); void encode_smileys(char *buff, int size); void decode_smileys(char *buff); #endif