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