aboutsummaryrefslogtreecommitdiff
path: root/libtxt/inc
diff options
context:
space:
mode:
authorMarvin Borner2021-03-26 21:55:50 +0100
committerMarvin Borner2021-03-26 22:02:20 +0100
commit05498860e8f7b1e8bb27880bc7526de026694804 (patch)
tree3bddf16e9439a950a3810d45e42a5cefdbcb7663 /libtxt/inc
parenta96e9c4c858d47f61b89d879aa0ce6a02bdacb38 (diff)
Renamed libs
Cleaner and more flexible.
Diffstat (limited to 'libtxt/inc')
-rw-r--r--libtxt/inc/html.h26
-rw-r--r--libtxt/inc/keymap.h16
-rw-r--r--libtxt/inc/xml.h51
3 files changed, 0 insertions, 93 deletions
diff --git a/libtxt/inc/html.h b/libtxt/inc/html.h
deleted file mode 100644
index c1b29f2..0000000
--- a/libtxt/inc/html.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// MIT License, Copyright (c) 2020 Marvin Borner
-// HTML parsing is mainly based on the XML parser
-
-#ifndef HTML_H
-#define HTML_H
-
-#include <def.h>
-#include <list.h>
-
-struct dom {
- char *tag;
- char *content;
- struct dom *parent;
- struct list *children;
-};
-
-struct html_element {
- u32 x_offset;
- u32 y_offset;
- struct dom *dom;
- struct element *obj;
-};
-
-int html_render(struct element *container, char *data, u32 length);
-
-#endif
diff --git a/libtxt/inc/keymap.h b/libtxt/inc/keymap.h
deleted file mode 100644
index 9f1966e..0000000
--- a/libtxt/inc/keymap.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// MIT License, Copyright (c) 2020 Marvin Borner
-
-#ifndef KEYMAP_H
-#define KEYMAP_H
-
-#define KEYMAP_LENGTH 90
-
-struct keymap {
- char map[KEYMAP_LENGTH];
- char shift_map[KEYMAP_LENGTH];
- char alt_map[KEYMAP_LENGTH];
-};
-
-struct keymap *keymap_parse(const char *path);
-
-#endif
diff --git a/libtxt/inc/xml.h b/libtxt/inc/xml.h
deleted file mode 100644
index 43a8005..0000000
--- a/libtxt/inc/xml.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Inspired by sxml (capmar)
-// MIT License, Copyright (c) 2020 Marvin Borner
-
-#ifndef XML_H
-#define XML_H
-
-#include <def.h>
-
-enum xml_error {
- XML_ERROR_INVALID = -1,
- XML_SUCCESS = 0,
- XML_ERROR_BUFFERDRY = 1,
- XML_ERROR_TOKENSFULL = 2
-};
-
-struct xml_token {
- u16 type;
- u16 size;
- u32 start_pos;
- u32 end_pos;
-};
-
-struct xml_args {
- const char *buffer;
- u32 buffer_length;
- struct xml_token *tokens;
- u32 num_tokens;
-};
-
-enum xml_type {
- XML_START_TAG,
- XML_END_TAG,
- XML_CHARACTER,
- XML_CDATA,
- XML_INSTRUCTION,
- XML_DOCTYPE,
- XML_COMMENT
-};
-
-struct xml {
- u32 buffer_pos;
- u32 ntokens;
- u32 tag_level;
-};
-
-enum xml_error xml_parse(struct xml *parser, const char *buffer, u32 buffer_length,
- struct xml_token *tokens, u32 num_tokens);
-
-void xml_init(struct xml *parser);
-
-#endif