aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/strchr.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-17 00:58:39 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-17 00:58:39 +0200
commit69ed661a488c0e02bf5fee3dc21e6a31a99a8d85 (patch)
treed4172bd2932f8b163b58651dd2f1e14f535304c0 /src/string/strchr.c
parentm fixes (diff)
downloadslibc-69ed661a488c0e02bf5fee3dc21e6a31a99a8d85.tar.gz
slibc-69ed661a488c0e02bf5fee3dc21e6a31a99a8d85.tar.bz2
slibc-69ed661a488c0e02bf5fee3dc21e6a31a99a8d85.tar.xz
fix errors
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/string/strchr.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/string/strchr.c b/src/string/strchr.c
index bf79a0b..06f3ee6 100644
--- a/src/string/strchr.c
+++ b/src/string/strchr.c
@@ -31,7 +31,7 @@
* @return Pointer to the first occurrence of `c`,
* `NULL` if none were found.
*/
-void* memchr(const void* segment, int c, size_t size)
+void* (memchr)(const void* segment, int c, size_t size)
{
char* s = segment;
while (size--)
@@ -51,7 +51,7 @@ void* memchr(const void* segment, int c, size_t size)
* @param c The sought after character.
* @return Pointer to the first occurrence of `c`.
*/
-void* rawmemchr(const void* segment, int c)
+void* (rawmemchr)(const void* segment, int c)
{
char* s = segment;
for (;;)
@@ -73,7 +73,7 @@ void* rawmemchr(const void* segment, int c)
* @return Pointer to the last occurrence of `c`,
* `NULL` if none were found.
*/
-void* memrchr(const void* segment, int c, size_t size)
+void* (memrchr)(const void* segment, int c, size_t size)
{
char* s = segment;
while (size--)
@@ -96,7 +96,7 @@ void* memrchr(const void* segment, int c, size_t size)
* @return Pointer to the first occurrence of `c`,
* `NULL` if none were found.
*/
-char* strchr(const char* string, int c)
+char* (strchr)(const char* string, int c)
{
for (;;)
if (*string == c)
@@ -120,7 +120,7 @@ char* strchr(const char* string, int c)
* Pointer to the terminating NUL character
* if none were found.
*/
-char* strchrnul(const char* string, int c)
+char* (strchrnul)(const char* string, int c)
{
for (;; string++)
if (*string == c)
@@ -144,7 +144,7 @@ char* strchrnul(const char* string, int c)
* @return Pointer to the last occurrence of `c`,
* `NULL` if none were found.
*/
-char* strrchr(const char* string, int c)
+char* (strrchr)(const char* string, int c)
{
char* r = NULL;
for (;;)