示例#1
0
void UtilitiesWrapper() {
    Utilities utils;
    char inp[256];
    char *lowerInp;
    strcpy(inp, "LIRIL");
    lowerInp = utils.toLowerCase(inp);
    cout << "TOLOWER:" << lowerInp << endl;
    free(lowerInp);
}