>>748
じゃあ僕は速度重視だだだ!(^p^)
inline uint16_t Int2Ascii02x(uint8_t uArg){
switch(uArg){
default: return 0x0; // error code.
case '\x00': return 0x3030;
case '\x01': return 0x3031;
... // 中略、全256パターン列挙
case '\xff': return 0x6666;
}
}
を使って直にバッファに書こうぜ!(^p^)(展開後何行だよ・・・)