Searched defs:str_len (Results 1 - 1 of 1) sorted by relevance

/forgerock/web-agents-v4/source/
H A Dutility.c1662 * @param str_len The number of characters in the incoming string to convert.
1664 void xml_entity_escape(char *temp_str, size_t str_len) { argument
1672 for (i = 0; i < str_len; i++) {
1676 memmove(temp_str + i + nshifts, temp_str + i, str_len - i + nshifts);
1680 str_len += nshifts;
1685 temp_str[str_len] = '\0';

Completed in 33 milliseconds