diff options
Diffstat (limited to 'kern/string.h')
-rw-r--r-- | kern/string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kern/string.h b/kern/string.h index 7ce4ab8f..86786c2b 100644 --- a/kern/string.h +++ b/kern/string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012 Richard Braun. + * Copyright (c) 2012-2017 Richard Braun. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,5 +28,6 @@ size_t strlen(const char *s); char * strcpy(char *dest, const char *src); size_t strlcpy(char *dest, const char *src, size_t n); int strcmp(const char *s1, const char *s2); +char * strchr(const char *s, int c); #endif /* _KERN_STRING_H */ |