2012-11-10 17:06:01 +01:00
|
|
|
/****************************************************************************
|
2018-05-29 21:21:26 +02:00
|
|
|
* libs/libc/string/lib_strstr.c
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* 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
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* 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.
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-03 00:30:35 +02:00
|
|
|
* Public Functions
|
2012-11-10 17:06:01 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2021-04-14 09:43:16 +02:00
|
|
|
#undef strstr /* See mm/README.txt */
|
2014-01-10 22:23:26 +01:00
|
|
|
FAR char *strstr(FAR const char *str, FAR const char *substr)
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
2014-01-10 22:23:26 +01:00
|
|
|
FAR const char *candidate; /* Candidate in str with matching start character */
|
|
|
|
char ch; /* First character of the substring */
|
2016-05-26 18:01:15 +02:00
|
|
|
size_t len; /* The length of the substring */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
/* Special case the empty substring */
|
|
|
|
|
|
|
|
len = strlen(substr);
|
|
|
|
ch = *substr;
|
|
|
|
|
|
|
|
if (!ch)
|
|
|
|
{
|
|
|
|
/* We'll say that an empty substring matches at the beginning of
|
|
|
|
* the string
|
|
|
|
*/
|
|
|
|
|
2015-10-12 15:45:02 +02:00
|
|
|
return (FAR char *)str;
|
2012-11-10 17:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Search for the substring */
|
|
|
|
|
|
|
|
candidate = str;
|
2015-10-12 15:45:02 +02:00
|
|
|
for (; ; )
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
|
|
|
/* strchr() will return a pointer to the next occurrence of the
|
|
|
|
* character ch in the string
|
|
|
|
*/
|
|
|
|
|
|
|
|
candidate = strchr(candidate, ch);
|
|
|
|
if (!candidate || strlen(candidate) < len)
|
|
|
|
{
|
2015-10-12 15:45:02 +02:00
|
|
|
/* First character of the substring does not appear in the string
|
|
|
|
* or the remainder of the string is not long enough to contain the
|
|
|
|
* substring.
|
|
|
|
*/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2015-10-12 15:45:02 +02:00
|
|
|
return NULL;
|
2012-11-10 17:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if this is the beginning of a matching substring */
|
|
|
|
|
|
|
|
if (strncmp(candidate, substr, len) == 0)
|
|
|
|
{
|
2015-10-12 15:45:02 +02:00
|
|
|
return (FAR char *)candidate;
|
2012-11-10 17:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* No, find the next candidate after this one */
|
|
|
|
|
|
|
|
candidate++;
|
|
|
|
}
|
|
|
|
|
2012-12-09 18:34:53 +01:00
|
|
|
/* Won't get here, but some compilers might complain. Other compilers
|
|
|
|
* might complain about this code being unreachable too.
|
|
|
|
*/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|