From d101d926946a5e8067a90d157b6553aae7bddc19 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 26 Dec 2020 19:23:13 +0100 Subject: Format all code with clang-format --- src/node.h | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'src/node.h') diff --git a/src/node.h b/src/node.h index f99da1a6..e380f038 100644 --- a/src/node.h +++ b/src/node.h @@ -22,24 +22,27 @@ #include 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 -- cgit v1.2.1