mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-24 12:05:32 -04:00
18 lines
357 B
C++
18 lines
357 B
C++
//! \file string_functions.h
|
|
//! A collection of helper routines for C-strings and STL strings
|
|
|
|
#ifndef OPENMC_STRING_FUNCTIONS_H
|
|
#define OPENMC_STRING_FUNCTIONS_H
|
|
|
|
#include <string>
|
|
|
|
namespace openmc {
|
|
|
|
std::string& strtrim(std::string& s);
|
|
|
|
char* strtrim(char* c_str);
|
|
|
|
void to_lower(std::string& str);
|
|
|
|
} // namespace openmc
|
|
#endif // STRING_FUNCTIONS_H
|