| 356 | //------------------------------------------------------------------------- |
| 357 | |
| 358 | void StringBuffer::getCopy8(UTF8 *buff, const U32 buffSize) const |
| 359 | { |
| 360 | incRequestCount8(); |
| 361 | AssertFatal(mBuffer.last() == 0, "StringBuffer::get UTF8 - not a null terminated string!"); |
| 362 | convertUTF16toUTF8N(mBuffer.address(), buff, buffSize); |
| 363 | } |
| 364 | |
| 365 | void StringBuffer::getCopy(UTF16 *buff, const U32 buffSize) const |
| 366 | { |
no test coverage detected