diff options
Diffstat (limited to 'src/sord_internal.h')
-rw-r--r-- | src/sord_internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sord_internal.h b/src/sord_internal.h index 4e8892e..7d62e54 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -26,12 +26,12 @@ typedef intptr_t SordCount; ///< Count of nodes or triples /** Node */ struct _SordNode { - SordNodeType type; ///< SordNodeType + uint8_t* buf; ///< Value (string) + const char* lang; ///< Literal language (interned string) + SordNode datatype; ///< Literal data type (ID of a URI node, or 0) size_t n_bytes; ///< Length of data in bytes (including terminator) SordCount refs; ///< Reference count (i.e. number of containing quads) - SordNode datatype; ///< Literal data type (ID of a URI node, or 0) - const char* lang; ///< Literal language (interned string) - uint8_t* buf; ///< Value (string) + SordNodeType type; ///< SordNodeType }; #endif /* SORD_SORD_INTERNAL_H_ */ |