Searched refs:pString (Results 1 – 1 of 1) sorted by relevance
286 static int create_xml_escape(char *pString, unsigned char c) in create_xml_escape() argument290 pString[counter++] = '&'; in create_xml_escape()291 pString[counter++] = '#'; in create_xml_escape()293 pString[counter++] = c / 100 + '0'; in create_xml_escape()296 pString[counter++] = c / 10 + '0'; in create_xml_escape()299 pString[counter++] = c + '0'; in create_xml_escape()300 pString[counter++] = ';'; in create_xml_escape()
Completed in 6 milliseconds