diff options
Diffstat (limited to 'plugins/MirOTR/src/striphtml.h')
-rw-r--r-- | plugins/MirOTR/src/striphtml.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/MirOTR/src/striphtml.h b/plugins/MirOTR/src/striphtml.h new file mode 100644 index 0000000000..3b2d9b6cbc --- /dev/null +++ b/plugins/MirOTR/src/striphtml.h @@ -0,0 +1,8 @@ +#pragma once
+
+struct STRIPHTML_DATA {
+ std::stack<char*> stack;
+ std::string buffer;
+};
+
+char * striphtml(char *html);
\ No newline at end of file |