| 371 | //------------------------------------------------------------------------- |
| 372 | |
| 373 | void StringBuffer::getCopy8(UTF8 *buff, const U32 buffSize) const |
| 374 | { |
| 375 | incRequestCount8(); |
| 376 | AssertFatal(mBuffer.last() == 0, "StringBuffer::get UTF8 - not a null terminated string!"); |
| 377 | convertUTF16toUTF8(mBuffer.address(), buff, buffSize); |
| 378 | } |
| 379 | |
| 380 | void StringBuffer::getCopy(UTF16 *buff, const U32 buffSize) const |
| 381 | { |
no test coverage detected