diff include/str.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/str.h	Wed Mar 27 13:38:30 2024 -0400
+++ b/include/str.h	Wed Apr 03 20:48:51 2024 -0400
@@ -1,5 +1,5 @@
-#ifndef __edl__internal__str_h
-#define __edl__internal__str_h
+#ifndef EDL_INTERNAL_STR_H_
+#define EDL_INTERNAL_STR_H_
 
 #include <stddef.h>
 
@@ -14,4 +14,4 @@
 int EDL_internal_string_append(EDL_internal_string* str, const char* data, const size_t length);
 void EDL_internal_string_free(EDL_internal_string* str);
 
-#endif /* __edl__internal__str_h */
+#endif /* EDL_INTERNAL_STR_H_ */