iconv: add euro symbol to GBK as single byte 0x80
[musl.git] / src / string / strncpy.c
blob545892e6ec5f602deb1d3b46cde440213812a390
1 #include <string.h>
3 char *strncpy(char *restrict d, const char *restrict s, size_t n)
5 __stpncpy(d, s, n);
6 return d;