mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
10 lines
165 B
C++
10 lines
165 B
C++
#include "Entropy.h"
|
|
|
|
String FChar(int c)
|
|
{
|
|
String s = Format("0x%02x", c) + " ";
|
|
if(c >= ' ' && c < 128)
|
|
return s + String(c, 1);
|
|
return s + ".";
|
|
}
|
|
|