lxsh/include/resolve.hpp
zawz a0155991e3 Performance optimizations
- Replaced some exec() calls with functions
- Removed resolved code being resolved again
- Removed empty string subargs inserted upon parsing
2020-11-13 15:18:30 +01:00

13 lines
238 B
C++

#ifndef RESOLVE_HPP
#define RESOLVE_HPP
#include "struc.hpp"
extern std::vector<std::string> included;
bool add_include(std::string const& file);
void resolve(_obj* sh, shmain* parent);
void resolve(shmain* sh);
#endif //RESOLVE_HPP