Mercurial > libedl
diff include/datatypes.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 | 0cc2555db371 |
children |
line wrap: on
line diff
--- a/include/datatypes.h Wed Mar 27 13:38:30 2024 -0400 +++ b/include/datatypes.h Wed Apr 03 20:48:51 2024 -0400 @@ -1,5 +1,5 @@ -#ifndef __edl__internal__datatypes_h -#define __edl__internal__datatypes_h +#ifndef EDL_INTERNAL_DATATYPES_H_ +#define EDL_INTERNAL_DATATYPES_H_ #include <stddef.h> #include "edl.h" /* EDL_media_type_t */ @@ -16,4 +16,4 @@ int EDL_internal_append_bool_to_string(EDL_internal_string* str, bool value); int EDL_internal_append_media_type_to_string(EDL_internal_string* str, EDL_media_type_t value); -#endif /* __edl__internal__datatypes_h */ +#endif /* EDL_INTERNAL_DATATYPES_H_ */