search for: b966e306

Displaying 1 result from an estimated 1 matches for "b966e306".

Did you mean: 966306
2020 Mar 28
0
[klibc:update-dash] Implement stpcpy() and stpncpy()
...; __extern char *strtok(char *, const char *); __extern char *strtok_r(char *, const char *, char **); +__extern char *stpcpy(char *, const char *); +__extern char *stpncpy(char *, const char *, size_t); #endif /* _STRING_H */ diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild index 19ccfbec..b966e306 100644 --- a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -46,6 +46,7 @@ klib-y += vsnprintf.o snprintf.o vsprintf.o sprintf.o \ strstr.o strncmp.o strncpy.o strrchr.o \ strxspn.o strspn.o strcspn.o strpbrk.o strsep.o strtok.o \ strtok_r.o \ + stpcpy.o stpncpy.o \ fnmatch.o \ ge...