mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-05 09:21:15 +00:00
Add startswith and endswith, functions that compare the beginning or ending of a string
This commit is contained in:
parent
e08ebac5c8
commit
373af01092
2 changed files with 19 additions and 0 deletions
|
@ -107,6 +107,9 @@ typedef long ssize_t;
|
|||
char *strcasestr(const char *in, const char *what);
|
||||
#define stristr strcasestr
|
||||
|
||||
int startswith (const char *base, const char *tag);
|
||||
int endswith (const char *base, const char *tag);
|
||||
|
||||
#if defined (macintosh) //|| defined (__APPLE__) //skip all boolean/Boolean crap
|
||||
#define true 1
|
||||
#define false 0
|
||||
|
|
16
src/string.c
16
src/string.c
|
@ -52,3 +52,19 @@ size_t strlcpy(char *dst, const char *src, size_t siz)
|
|||
#endif
|
||||
|
||||
#include "strcasestr.c"
|
||||
|
||||
int startswith(const char *path, const char *tag)
|
||||
{
|
||||
return !strncmp(path, tag, strlen(tag));
|
||||
}
|
||||
|
||||
int endswith(const char *base, const char *tag)
|
||||
{
|
||||
const size_t base_length = strlen(base);
|
||||
const size_t tag_length = strlen(tag);
|
||||
|
||||
if (tag_length > base_length)
|
||||
return false;
|
||||
|
||||
return !memcmp(&base[base_length - tag_length], tag, tag_length);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue