summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libcss/types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/libcss/types.h b/include/libcss/types.h
index 8bda940..f095f1c 100644
--- a/include/libcss/types.h
+++ b/include/libcss/types.h
@@ -55,11 +55,11 @@ typedef enum css_origin {
/**
* String type
- *
- * \todo It might be better to define parserutils_string, and use that.
- * (where parserutils_string is identical to parserutils_hash_entry)
*/
-typedef parserutils_hash_entry css_string;
+typedef struct css_string {
+ size_t len;
+ uint8_t *data;
+} css_string;
typedef struct css_stylesheet css_stylesheet;