===========================================================================
| 49 | |
| 50 | //=========================================================================== |
| 51 | static char* FormatCharCopy(char* pDst, const char* pEnd, uint16_t srcAddr, const int nLen) |
| 52 | { |
| 53 | for (int i = 0; i < nLen && pDst < pEnd; i++) |
| 54 | *pDst++ = FormatCharTxtCtrl(ReadByteFromMemory(srcAddr++)); |
| 55 | return pDst; |
| 56 | } |
| 57 | |
| 58 | //=========================================================================== |
| 59 | static char FormatCharTxtAsci(const BYTE b, bool* pWasAsci_) |
no test coverage detected