lxsh/include/minify.hpp
2021-08-19 17:48:46 +02:00

16 lines
351 B
C++

#ifndef MINIFY_HPP
#define MINIFY_HPP
#include "struc.hpp"
#include <regex>
#include <string>
void minify_var(_obj* in, std::regex const& exclude);
void minify_fct(_obj* in, std::regex const& exclude);
void delete_unused(_obj* in, std::regex const& var_exclude, std::regex const& fct_exclude);
void minify_generic(_obj* in);
#endif //MINIFY_HPP