diff tools/fanalyze.c @ 2494:fcaf2db0cd05

Remove dm_str(n)casecmp() functions, in favour of standard libc ones.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 28 Apr 2020 20:34:49 +0300
parents 0d13de7edb30
children 9921d60bd8e4
line wrap: on
line diff
--- a/tools/fanalyze.c	Tue Apr 28 20:28:35 2020 +0300
+++ b/tools/fanalyze.c	Tue Apr 28 20:34:49 2020 +0300
@@ -310,13 +310,13 @@
         char *vtmp = vspec;
 
         // Get endianess specifier, if any
-        if (dm_strncasecmp(vtmp, "le", 2) == 0)
+        if (strncasecmp(vtmp, "le", 2) == 0)
         {
             vendianess = TRUE;
             vtmp += 2;
         }
         else
-        if (dm_strncasecmp(vtmp, "be", 2) == 0)
+        if (strncasecmp(vtmp, "be", 2) == 0)
         {
             vendianess = FALSE;
             vtmp += 2;