Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-05-27 01:04:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-27 01:04:01 +0400
commit78b8e4a437b34a3956283dae08a6718a01b00e63 (patch)
tree56cfe521361250f19e4a9a0ba71ade8bbaf97c53 /source/blender/blenlib/intern/string.c
parent06fea1a0ff01590e88ef210edd2314615e077400 (diff)
remove BLI_streq() since it was hardly used, also replace string search with BLI_findstring().
Diffstat (limited to 'source/blender/blenlib/intern/string.c')
-rw-r--r--source/blender/blenlib/intern/string.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/string.c b/source/blender/blenlib/intern/string.c
index 11de8a3d45c..8e0314ec17f 100644
--- a/source/blender/blenlib/intern/string.c
+++ b/source/blender/blenlib/intern/string.c
@@ -212,11 +212,6 @@ char *BLI_replacestr(char *str, const char *oldText, const char *newText)
}
}
-int BLI_streq(const char *a, const char *b)
-{
- return (strcmp(a, b)==0);
-}
-
int BLI_strcaseeq(const char *a, const char *b)
{
return (BLI_strcasecmp(a, b)==0);