Logo white

Hu Chunming / FFNvDecoder

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • FFNvDecoder
  • 3rdparty
  • jrtplib-3.11.2
  • tools
  • strncpystest.cpp
  • 支持gb28181
    3d2ab595
    Hu Chunming authored
    2022-12-26 16:21:33 +0800  
    Browse Code »
strncpystest.cpp 122 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8
#include <string.h>

int main(void)
{
	char hostname[1024];
	strncpy_s(hostname,1024,"localhost",_TRUNCATE);
	return 0;
}