I would like to use strlcpy (to call an external api), which is missing from string.h, when I use g++'s -std=c++0x parameter.
% g++ -std=c++0x foo.cpp
foo.cpp: In function 'int main(int, char**)':
foo.cpp:5:11: error: 'strlcpy' was not declared in this scope
% g++ foo.cpp
% cat foo.cpp
#include <string.h>
int main(int argc, char* argv[])
{
const char src[] = "foo";
char dest[1024] = { 0 };
strlcpy(dest, src, sizeof(dest));
return 0;
}
Is it possible to use strlcpy and the std=c++0x flag, or do I have to drop the later?
Additionally I was not able to find the strlcpy manpage in cygwin, even though they seem to have the function. Any pointers?
I use gcc 4.7.2 on cygwin.
