diff options
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -22,24 +22,27 @@ #include <stddef.h> struct SerdNodeImpl { - size_t n_bytes; /**< Size in bytes (not including null) */ - SerdNodeFlags flags; /**< Node flags (e.g. string properties) */ - SerdType type; /**< Node type */ + size_t n_bytes; /**< Size in bytes (not including null) */ + SerdNodeFlags flags; /**< Node flags (e.g. string properties) */ + SerdType type; /**< Node type */ }; static inline char* serd_node_buffer(SerdNode* node) { - return (char*)(node + 1); + return (char*)(node + 1); } static inline const char* serd_node_buffer_c(const SerdNode* node) { - return (const char*)(node + 1); + return (const char*)(node + 1); } -SerdNode* serd_node_malloc(size_t n_bytes, SerdNodeFlags flags, SerdType type); -void serd_node_set(SerdNode** dst, const SerdNode* src); +SerdNode* +serd_node_malloc(size_t n_bytes, SerdNodeFlags flags, SerdType type); -#endif // SERD_NODE_H +void +serd_node_set(SerdNode** dst, const SerdNode* src); + +#endif // SERD_NODE_H |