diff options
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r-- | src/nvim/strings.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index 52a803a3cc..6fe2fd8ff3 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -436,25 +436,6 @@ char *vim_strchr(const char *const string, const int c) } } -/// Test if "str" ends with "suffix" -/// -/// @param[in] str -/// @param[in] suffix to match -/// -/// @return [allocated] Copy of the string. -bool str_ends_with(const char *str, const char *suffix) -{ - if (!str || !suffix) { - return false; - } - size_t lenstr = strlen(str); - size_t lensuffix = strlen(suffix); - if (lensuffix > lenstr) { - return false; - } - return strncmp(str + lenstr - lensuffix, suffix, lensuffix) == 0; -} - // Sort an array of strings. #ifdef INCLUDE_GENERATED_DECLARATIONS |