23 using byte =
unsigned char;
24 const byte utf8Bom[3] = { 0xEF, 0xBB, 0xBF };
25 const byte bigEndianBom[2] = { 0xFE, 0xFF };
26 const byte littleEndianBom[2] = { 0xFF, 0xFE };
28 bool CheckIfISO(
byte* fileContent, int64_t numberOfBytes);
MongoDB uses only UTF-8 and some errors occured if the characters with different encoding standard we...
EncodingStandard
Definition TextEncoding.h:21