blob: 00be2485eccc5a1b08fb3b4faf53e40c773f722d [file] [edit]
#include <string.h>
int main() {
char from[] = "x";
char to[4];
strncpy(to, from, sizeof(to));
return 0;
}