Mercurial > libedl
comparison 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 |
comparison
equal
deleted
inserted
replaced
12:0cc2555db371 | 13:41b74137e201 |
---|---|
1 #ifndef __edl__internal__datatypes_h | 1 #ifndef EDL_INTERNAL_DATATYPES_H_ |
2 #define __edl__internal__datatypes_h | 2 #define EDL_INTERNAL_DATATYPES_H_ |
3 | 3 |
4 #include <stddef.h> | 4 #include <stddef.h> |
5 #include "edl.h" /* EDL_media_type_t */ | 5 #include "edl.h" /* EDL_media_type_t */ |
6 #include "str.h" | 6 #include "str.h" |
7 | 7 |
14 int EDL_internal_append_integer_to_string(EDL_internal_string* str, int value); | 14 int EDL_internal_append_integer_to_string(EDL_internal_string* str, int value); |
15 int EDL_internal_append_double_to_string(EDL_internal_string* str, double value); | 15 int EDL_internal_append_double_to_string(EDL_internal_string* str, double value); |
16 int EDL_internal_append_bool_to_string(EDL_internal_string* str, bool value); | 16 int EDL_internal_append_bool_to_string(EDL_internal_string* str, bool value); |
17 int EDL_internal_append_media_type_to_string(EDL_internal_string* str, EDL_media_type_t value); | 17 int EDL_internal_append_media_type_to_string(EDL_internal_string* str, EDL_media_type_t value); |
18 | 18 |
19 #endif /* __edl__internal__datatypes_h */ | 19 #endif /* EDL_INTERNAL_DATATYPES_H_ */ |