Removed unused encode.xml

This commit is contained in:
James Booth
2014-01-21 22:06:09 +00:00
parent 2bc22981fd
commit bbdf2bea58
2 changed files with 0 additions and 14 deletions

View File

@@ -167,19 +167,6 @@ str_contains(char str[], int size, char ch)
return 0;
}
char *
encode_xml(const char * const xml)
{
char *coded_msg = str_replace(xml, "&", "&");
char *coded_msg2 = str_replace(coded_msg, "<", "&lt;");
char *coded_msg3 = str_replace(coded_msg2, ">", "&gt;");
free(coded_msg);
free(coded_msg2);
return coded_msg3;
}
char *
prof_getline(FILE *stream)
{