New-Cli-Installer/gucc/include/gucc/cpu.hpp
2024-06-26 16:16:34 +04:00

14 lines
230 B
C++

#ifndef CPU_HPP
#define CPU_HPP
#include <string> // for string
#include <vector> // for vector
namespace gucc::cpu {
auto get_isa_levels() noexcept -> std::vector<std::string>;
} // namespace gucc::cpu
#endif // CPU_HPP