]> granicus.if.org Git - graphviz/commitdiff
cgraph: [nfc] reflow strcasecmp.h
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 24 Feb 2022 05:17:44 +0000 (21:17 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 28 Feb 2022 00:09:55 +0000 (16:09 -0800)
This was intended to be compliant when I wrote it, but apparently I erred.

lib/cgraph/strcasecmp.h

index f8e62838597d767ebe2093091f2fbdf57e0d6bb2..c804379a1f2166823d1e0facdf08b5ee799bcf19 100644 (file)
@@ -1,28 +1,28 @@
-/* platform abstraction for case-insensitive string functions */
+// platform abstraction for case-insensitive string functions
 
 #pragma once
 
 #include <stddef.h>
 
 #ifdef _MSC_VER
-  /* redirect these to the Windows alternatives */
+// redirect these to the Windows alternatives
 
-  #include <string.h>
+#include <string.h>
 
-  // some third-party libraries like libgd provide their own macro-based
-  // `strcasecmp` shim, so only define our own if their’s is not in scope
+// some third-party libraries like libgd provide their own macro-based
+// `strcasecmp` shim, so only define our own if their’s is not in scope
 #ifndef strcasecmp
-  static inline int strcasecmp(const char *s1, const char *s2) {
-    return _stricmp(s1, s2);
-  }
+static inline int strcasecmp(const char *s1, const char *s2) {
+  return _stricmp(s1, s2);
+}
 #endif
 
-  static inline int strncasecmp(const char *s1, const char *s2, size_t n) {
-    return _strnicmp(s1, s2, n);
-  }
+static inline int strncasecmp(const char *s1, const char *s2, size_t n) {
+  return _strnicmp(s1, s2, n);
+}
 
 #else
-  /* other platforms define these in strings.h */
-  #include <strings.h>
+// other platforms define these in strings.h
+#include <strings.h>
 
 #endif