From 89be71eabefcc55a3d0a56d7bed7124c4fdafbd8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Oct 2018 20:57:33 +0200 Subject: Simplify streaming API and improve pretty printing This removes the obligation from the caller to correctly maintain flags to describe the current anonymous context, instead making the writer handle this itself as much as possible. Flags remain for the cases the writer can not infer from context: the start of anonymous subject and object nodes. --- src/stack.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/stack.h') diff --git a/src/stack.h b/src/stack.h index 49f77843..074d43b0 100644 --- a/src/stack.h +++ b/src/stack.h @@ -46,6 +46,12 @@ serd_stack_new(size_t size) return stack; } +static inline void +serd_stack_clear(SerdStack* stack) +{ + stack->size = SERD_STACK_BOTTOM; +} + static inline bool serd_stack_is_empty(const SerdStack* stack) { -- cgit v1.2.1