mirror of https://github.com/kiwix/libkiwix.git
22 lines
402 B
C++
22 lines
402 B
C++
#include "unaccent.h"
|
|
|
|
using namespace std;
|
|
|
|
/* Remove accent */
|
|
std::string removeAccents(const char *text = NULL) {
|
|
char* out = 0;
|
|
size_t out_length = 0;
|
|
|
|
if (!unac_string("UTF8", text, strlen(text), &out, &out_length)) {
|
|
std::string textWithoutAccent = string(out, out_length);
|
|
free(out);
|
|
return textWithoutAccent;
|
|
}
|
|
|
|
if (text != NULL) {
|
|
return text;
|
|
}
|
|
|
|
return "";
|
|
}
|