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/BLI_string.h
parent06fea1a0ff01590e88ef210edd2314615e077400 (diff)
remove BLI_streq() since it was hardly used, also replace string search with BLI_findstring().
Diffstat (limited to 'source/blender/blenlib/BLI_string.h')
-rw-r--r--source/blender/blenlib/BLI_string.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/blenlib/BLI_string.h b/source/blender/blenlib/BLI_string.h
index 69702f72026..408809661cf 100644
--- a/source/blender/blenlib/BLI_string.h
+++ b/source/blender/blenlib/BLI_string.h
@@ -123,13 +123,6 @@ __attribute__ ((format (printf, 1, 2)))
;
/**
- * Compare two strings
- *
- * @retval True if the strings are equal, false otherwise.
- */
-int BLI_streq(const char *a, const char *b);
-
- /**
* Compare two strings without regard to case.
*
* @retval True if the strings are equal, false otherwise.