libqasm
library for handling cQASM files
cqasm-utils.hpp
Go to the documentation of this file.
1 
5 #pragma once
6 
7 #include <string>
8 
9 namespace cqasm {
10 
14 namespace utils {
15 
19 std::string lowercase(const std::string &name);
20 
24 bool case_insensitive_equals(const std::string &lhs, const std::string &rhs);
25 
26 } // namespace utils
27 } // namespace cqasm
Toplevel namespace with entry points for the new API.
bool case_insensitive_equals(const std::string &lhs, const std::string &rhs)
Case-insensitive string compare.
Definition: cqasm-utils.cpp:26
std::string lowercase(const std::string &name)
Makes a string lowercase.
Definition: cqasm-utils.cpp:15