diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-11 20:42:41 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-11 20:42:41 +0100 |
commit | 18e3ddf6058d86f22df9fd90f6ad7f3a3833909f (patch) | |
tree | b6cb5d3612577a6f169f8fba4f5ff4cb64fb9fa2 /LibC/string.h | |
parent | d5d45d1088d28b7640bcc3013810b38c702c3933 (diff) | |
download | serenity-18e3ddf6058d86f22df9fd90f6ad7f3a3833909f.zip |
Add a naive /bin/fgrep for testing pipes.
Diffstat (limited to 'LibC/string.h')
-rw-r--r-- | LibC/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/string.h b/LibC/string.h index cb0c9ddd9b..c121dfc862 100644 --- a/LibC/string.h +++ b/LibC/string.h @@ -17,6 +17,7 @@ void* memset(void*, int, size_t); char* strcpy(char* dest, const char* src); char* strncpy(char* dest, const char* src, size_t); char* strchr(const char*, int c); +char* strstr(const char* haystack, const char* needle); char* strrchr(const char*, int c); char* strcat(char *dest, const char *src); char* strncat(char *dest, const char *src, size_t); |