mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-06-06 21:28:50 +08:00
14 lines
319 B
C++
14 lines
319 B
C++
#ifndef _UTILS_STR_UTIL_H
|
|
#define _UTILS_STR_UTIL_H
|
|
#include <string>
|
|
namespace str_util {
|
|
/**
|
|
* @brief Convert string to lowercase
|
|
* @param ori Origin string
|
|
* @param result Output string.
|
|
* @return true if successed.
|
|
*/
|
|
bool tolowercase(std::string ori, std::string& result);
|
|
}
|
|
#endif
|