summaryrefslogtreecommitdiff
path: root/MirOTR/striphtml.h
blob: 7cffc41f228a9e57256636ab99dcb6eb4c9f9c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "stack"
#include "string"

struct STRIPHTML_DATA {
	std::stack<char*> stack;
	std::string buffer;
};

char * striphtml(char *html);