Distribution_Service/CC_SDK/Environment/jrtplib/tools/strncpystest.cpp

9 lines
122 B
C++
Raw Normal View History

2026-03-24 14:43:26 +08:00
#include <string.h>
int main(void)
{
char hostname[1024];
strncpy_s(hostname,1024,"localhost",_TRUNCATE);
return 0;
}