diff include/util.h @ 13:41b74137e201

include: make header guards sane double underscores are reserved to the implementation by the C standard
author Paper <paper@paper.us.eu.org>
date Wed, 03 Apr 2024 20:48:51 -0400
parents 0c98b46eaf73
children
line wrap: on
line diff
--- a/include/util.h	Wed Mar 27 13:38:30 2024 -0400
+++ b/include/util.h	Wed Apr 03 20:48:51 2024 -0400
@@ -1,5 +1,5 @@
-#ifndef __edl__internal__util_h
-#define __edl__internal__util_h
+#ifndef EDL_INTERNAL_UTIL_H_
+#define EDL_INTERNAL_UTIL_H_
 
 #include <stddef.h>
 
@@ -7,4 +7,4 @@
 char* EDL_internal_strnchr(const char* haystack, char needle, size_t length);
 char* EDL_internal_strdup(const char* s);
 
-#endif /* __edl__internal__util_h */
+#endif /* EDL_INTERNAL_UTIL_H_ */