How do I concatenate (or even assign) two strings (TCHAR
arrays, I guess) in MinGW with GCC?
StrCatBuff
?
#include <shlwapi.h>
and-lshlwapi
do work, but you're not supposed to use it_tcscat
?
Seems not to existStringCchCat
Seems not to exist.strsafe.h
doesn't exist.
The same holds true for their respective assignment functions like StringCchCpy
and _tcscpy
.