diff options
Diffstat (limited to 'src/sord_internal.h')
-rw-r--r-- | src/sord_internal.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sord_internal.h b/src/sord_internal.h index e4d858b..727701f 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -14,8 +14,8 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#ifndef SORD_SORD_INTERNAL_H_ -#define SORD_SORD_INTERNAL_H_ +#ifndef SORD_SORD_INTERNAL_H +#define SORD_SORD_INTERNAL_H #include <stddef.h> #include <stdint.h> @@ -27,12 +27,12 @@ struct SordNodeImpl { 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) - size_t refs; ///< Reference count (i.e. number of containing quads) + size_t n_bytes; ///< Length of data in bytes (including NULL) + size_t refs; ///< Reference count (# of containing quads) SordNodeType type; ///< SordNodeType }; const char* sord_intern_lang(SordWorld* world, const char* lang); -#endif /* SORD_SORD_INTERNAL_H_ */ +#endif /* SORD_SORD_INTERNAL_H */ |