summaryrefslogtreecommitdiff
path: root/include/libcss/types.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-05-01 16:36:27 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-05-01 16:36:27 +0000
commit72c39e3522c5781d1e7dc8abad77d96141c5d49b (patch)
treee16497caaa0bf20771ef34787de02fc95e5993bf /include/libcss/types.h
downloadlibcss-72c39e3522c5781d1e7dc8abad77d96141c5d49b.tar.gz
libcss-72c39e3522c5781d1e7dc8abad77d96141c5d49b.tar.bz2
Import beginnings of a CSS parsing library.
Currently comprises a lexer. svn path=/trunk/libcss/; revision=4112
Diffstat (limited to 'include/libcss/types.h')
-rw-r--r--include/libcss/types.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/libcss/types.h b/include/libcss/types.h
new file mode 100644
index 0000000..b3e18dc
--- /dev/null
+++ b/include/libcss/types.h
@@ -0,0 +1,33 @@
+/*
+ * This file is part of LibCSS.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
+ */
+
+#ifndef css_types_h_
+#define css_types_h_
+
+#include <stdbool.h>
+#include <inttypes.h>
+
+/** Source of charset information, in order of importance
+ * A client-dictated charset will override all others.
+ * A document-specified charset will override autodetection or the default */
+typedef enum css_charset_source {
+ CSS_CHARSET_DEFAULT = 0, /**< Default setting */
+ CSS_CHARSET_REFERRED = 1, /**< From referring document */
+ CSS_CHARSET_METADATA = 2, /**< From linking metadata */
+ CSS_CHARSET_DOCUMENT = 3, /**< Defined in document */
+ CSS_CHARSET_DICTATED = 4, /**< Dictated by client */
+} css_charset_source;
+
+/**
+ * String type
+ */
+typedef struct css_string {
+ uint8_t *ptr; /**< Pointer to data */
+ size_t len; /**< Byte length of string */
+} css_string;
+
+#endif