diff options
Diffstat (limited to 'include/serd/cursor.h')
-rw-r--r-- | include/serd/cursor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/serd/cursor.h b/include/serd/cursor.h index eba88ca7..752c1d84 100644 --- a/include/serd/cursor.h +++ b/include/serd/cursor.h @@ -5,9 +5,9 @@ #define SERD_CURSOR_H #include "serd/attributes.h" -#include "serd/memory.h" #include "serd/statement.h" #include "serd/status.h" +#include "zix/allocator.h" #include "zix/attributes.h" #include <stdbool.h> @@ -30,7 +30,7 @@ typedef struct SerdCursorImpl SerdCursor; /// Return a new copy of `cursor` SERD_API SerdCursor* ZIX_ALLOCATED -serd_cursor_copy(SerdAllocator* ZIX_NULLABLE allocator, +serd_cursor_copy(ZixAllocator* ZIX_NULLABLE allocator, const SerdCursor* ZIX_NULLABLE cursor); /// Return the statement pointed to by `cursor` @@ -71,8 +71,8 @@ serd_cursor_equals(const SerdCursor* ZIX_NULLABLE lhs, /// Free `cursor` SERD_API void -serd_cursor_free(SerdAllocator* ZIX_NULLABLE allocator, - SerdCursor* ZIX_NULLABLE cursor); +serd_cursor_free(ZixAllocator* ZIX_NULLABLE allocator, + SerdCursor* ZIX_NULLABLE cursor); /** @} |