| 8054 | } |
| 8055 | |
| 8056 | static const XML_Char *FASTCALL |
| 8057 | poolAppendString(STRING_POOL *pool, const XML_Char *s) { |
| 8058 | while (*s) { |
| 8059 | if (! poolAppendChar(pool, *s)) |
| 8060 | return NULL; |
| 8061 | s++; |
| 8062 | } |
| 8063 | return pool->start; |
| 8064 | } |
| 8065 | |
| 8066 | static XML_Char * |
| 8067 | poolStoreString(STRING_POOL *pool, const ENCODING *enc, const char *ptr, |
no outgoing calls
no test coverage detected
searching dependent graphs…