aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/fastlib/text/apps/unicode_tolowerdump.cpp
blob: 7d84f6e931de842d4def13ceb4346b3dabe7d5c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/fastlib/text/unicodeutil.h>

int main(int argc, char **argv) {
    for (ucs4_t testchar = 0; testchar < 0x10000; testchar++) {
        printf("%08x %08x\n", testchar, Fast_UnicodeUtil::ToLower(testchar));
    }
    return 0;
}