#ifndef DEBASHIFY_HPP #define DEBASHIFY_HPP #include "struc.hpp" #include #include struct debashify_params { std::set required_fcts; void require_fct(std::string const& in) { required_fcts.insert(in); } // map of detected arrays // bool value: is associative std::map arrays; }; bool r_debashify(_obj* o, debashify_params* params); std::set debashify(_obj* o, debashify_params* params); std::set debashify(shmain* sh); #endif //DEBASHIFY_HPP