| 8034 | } |
| 8035 | |
| 8036 | static const XML_Char *FASTCALL |
| 8037 | poolCopyString(STRING_POOL *pool, const XML_Char *s) { |
| 8038 | do { |
| 8039 | if (! poolAppendChar(pool, *s)) |
| 8040 | return NULL; |
| 8041 | } while (*s++); |
| 8042 | s = pool->start; |
| 8043 | poolFinish(pool); |
| 8044 | return s; |
| 8045 | } |
| 8046 | |
| 8047 | static const XML_Char * |
| 8048 | poolCopyStringN(STRING_POOL *pool, const XML_Char *s, int n) { |
no outgoing calls
no test coverage detected