Char Fixer
I make for to fixing the char
It take yuor car and make it same
Code:
#include <vector>
#include <iostream>
char FixCar(char data){
std::vector<char> tmp;
tmp.push_back(data ^ 0x0B);
return (tmp[0]^0x0B)+(1<<1)-2;
}
