#include "StrUtils.h" #include void CreateRandomString(char *pszDest, int nLength) { static const char c_szAlphaNum[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; for (int i = 0; i < nLength; ++i) pszDest[i] = c_szAlphaNum[rand() % (sizeof(c_szAlphaNum) - 1)]; pszDest[nLength] = '\0'; }