Skip to content

Commit

Permalink
libs/libc/string: add memmem
Browse files Browse the repository at this point in the history
This function is the GNU extension.
  • Loading branch information
Cynerd authored and pkarashchenko committed Jul 22, 2022
1 parent e268b23 commit 6c7f991
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 1 deletion.
2 changes: 2 additions & 0 deletions include/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ int memcmp(FAR const void *s1, FAR const void *s2, size_t n);
FAR void *memcpy(FAR void *dest, FAR const void *src, size_t n);
FAR void *memmove(FAR void *dest, FAR const void *src, size_t count);
FAR void *memset(FAR void *s, int c, size_t n);
FAR void *memmem(FAR const void *haystack, size_t haystacklen,
FAR const void *needle, size_t needlelen);

void explicit_bzero(FAR void *s, size_t n);

Expand Down
2 changes: 1 addition & 1 deletion libs/libc/string/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Add the string C files to the build

CSRCS += lib_ffs.c lib_ffsl.c lib_ffsll.c lib_fls.c lib_flsl.c
CSRCS += lib_flsll.c lib_isbasedigit.c lib_memccpy.c lib_memrchr.c
CSRCS += lib_flsll.c lib_isbasedigit.c lib_memccpy.c lib_memrchr.c lib_memmem.c
CSRCS += lib_popcount.c lib_popcountl.c lib_popcountll.c
CSRCS += lib_skipspace.c lib_stpcpy.c lib_stpncpy.c lib_strcasecmp.c
CSRCS += lib_strcat.c lib_strcspn.c lib_strchrnul.c lib_strdup.c
Expand Down
71 changes: 71 additions & 0 deletions libs/libc/string/lib_memmem.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/****************************************************************************
* libs/libc/string/lib_memmem.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/

/****************************************************************************
* Included Files
****************************************************************************/

#include <string.h>

/****************************************************************************
* Public Functions
****************************************************************************/

/****************************************************************************
* Name: memmem
*
* Description:
* The memmem() function finds the start of the first occurrence of the
* substring needle of length needlelen in the memory area haystack of
* length haystacklen.
*
* Returned Value:
* The memmem() function returns a pointer to the beginning of the
* substring, or NULL if the substring is not found.
*
****************************************************************************/

FAR void *memmem(FAR const void *haystack, size_t haystacklen,
FAR const void *needle, size_t needlelen)
{
FAR const unsigned char *h = haystack;
FAR const unsigned char *n = needle;
size_t i;
size_t y;

if (needlelen > haystacklen)
{
return NULL;
}

for (i = 0; i < haystacklen - needlelen; i++)
{
y = 0;
while (h[i + y] == n[y])
{
if (++y == needlelen)
{
return (void *)(h + i);
}
}
}

return NULL;
}

0 comments on commit 6c7f991

Please sign in to comment.