mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-07-08 01:30:39 +08:00
Add libiconv support
This commit is contained in:
13
str_util.h
Normal file
13
str_util.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user