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);