| 7214 | } |
| 7215 | |
| 7216 | static const XML_Char *FASTCALL |
| 7217 | poolCopyString(STRING_POOL *pool, const XML_Char *s) { |
| 7218 | do { |
| 7219 | if (! poolAppendChar(pool, *s)) |
| 7220 | return NULL; |
| 7221 | } while (*s++); |
| 7222 | s = pool->start; |
| 7223 | poolFinish(pool); |
| 7224 | return s; |
| 7225 | } |
| 7226 | |
| 7227 | static const XML_Char * |
| 7228 | poolCopyStringN(STRING_POOL *pool, const XML_Char *s, int n) { |
no outgoing calls
no test coverage detected