summaryrefslogtreecommitdiff
path: root/macros.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-05 22:50:33 +0000
committertron <tron@openttd.org>2005-02-05 22:50:33 +0000
commit12183084b75365777aecd57fe43a355f39d1200c (patch)
tree68059d4827f8ac3262d8aecaf7170b7109c27180 /macros.h
parent491063c9a13274c8f05c82da5bf1d935797b3a16 (diff)
downloadopenttd-12183084b75365777aecd57fe43a355f39d1200c.tar.xz
(svn r1808) Use strcmp() instead of home brewed function str_eq()
Diffstat (limited to 'macros.h')
-rw-r--r--macros.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/macros.h b/macros.h
index 71f015bdb..62840bee6 100644
--- a/macros.h
+++ b/macros.h
@@ -26,16 +26,6 @@ static inline int clamp2(int a, int min, int max) { if (a <= min) a=min; if (a >
static inline bool int32_add_overflow(int32 a, int32 b) { return (int32)(a^b)>=0 && (int32)(a^(a+b))<0; }
static inline bool int32_sub_overflow(int32 a, int32 b) { return (int32)(a^b)<0 && (int32)(a^(a-b))<0; }
-static inline bool str_eq(const byte *a, const byte *b)
-{
- int i=0;
- while (a[i] == b[i]) {
- if (a[i] == 0)
- return true;
- i++;
- }
- return false;
-}
// Will crash if strings are equal
static inline bool str_is_below(byte *a, byte *b) {