| Multi-byte | Unicode |
| char | TCHAR |
| strcat_s() | _tcscaft_s() |
| strcpy_s() | _tcscpy_s() |
| strncpy_s() | _tcsncpy_s() |
| strien() | _tcsien() |
| sprinif_s() | _stprintf_s() |
Wednesday, June 10, 2020
Multi-byte vs. Unicode
Subscribe to:
Posts (Atom)
-
Linear Intersection for a Stereo Pair There are two images. Object point vs. image point, in the first image: $$ \begin{pmatrix} X \\...
-
Reduced normatrix for photogrammetric bundle adjustment based on the collinearity equations Note: There are $m_1$ photos and $m_2$ obje...
-
int decNum = 123456; char hexNum[16]; // decimal number to hexadecimal number sprintf_s(hexNum, 16, "%X", decNum); printf("%d...