Commit bd9de5ec authored by Paul Sokolovsky's avatar Paul Sokolovsky

lib/libc/string0: Add strncpy() implementation.

parent 5302c3e8
......@@ -169,6 +169,15 @@ char *strcpy(char *dest, const char *src) {
return dest;
}
char *strncpy(char *dest, const char *src, size_t dest_sz) {
char *d = dest;
while (*src && --dest_sz) {
*d++ = *src++;
}
*d = '\0';
return dest;
}
// needed because gcc optimises strcpy + strcat to this
char *stpcpy(char *dest, const char *src) {
while (*src) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment