search for: _string_h

Displaying 3 results from an estimated 3 matches for "_string_h".

Did you mean: string_h
2005 May 30
1
patch: porting module-init-tools 2/4: index
This is tiny and has no impact in klib size other that it is polluting the namespace. .bill -------------- next part -------------- A non-text attachment was scrubbed... Name: patch-index-strchr.txt Type: text/x-diff Size: 355 bytes Desc: not available Url : http://www.vas.nu/pipermail/klibc/attachments/20050530/b7c96936/patch-index-strchr.bin
2020 Mar 28
0
[klibc:update-dash] Implement stpcpy() and stpncpy()
...onst char *, const char *); __extern char *strstr(const char *, const char *); __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....
2008 Sep 07
1
[git pull v2] initial mntent.h, mount features, ipconfig fixes
...de/string.h @@ -44,5 +44,6 @@ __extern char *strsep(char **, const char *); __extern size_t strspn(const char *, const char *); __extern char *strstr(const char *, const char *); __extern char *strtok(char *, const char *); +__extern char *strtok_r(char *, const char *, char **); #endif /* _STRING_H */ diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild index c8eabf9..eb04267 100644 --- a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -36,6 +36,7 @@ klib-y := vsnprintf.o snprintf.o vsprintf.o sprintf.o \ strncat.o strlcpy.o strlcat.o \ strstr.o strncmp.o strncpy.o strrchr.o \ strxspn.o st...