diff --git a/fc-lang_conv/CMakeLists.txt b/fc-lang_conv/CMakeLists.txt index 3a1c758..7d40735 100644 --- a/fc-lang_conv/CMakeLists.txt +++ b/fc-lang_conv/CMakeLists.txt @@ -2,27 +2,8 @@ # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -set(EXE_NAME fc-lang_conv) - set(SRC_LIST - main.c + fc-lang-data.c ) -if(WIN32) - set(SRC_LIST ${SRC_LIST} - getline_win32.c - ) -endif(WIN32) - -set(LDADD_LIBS) -if(WIN32) - # -mconsole -> console application (with terminal screen) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -mconsole") -endif(WIN32) - -add_executable(${EXE_NAME} WIN32 ${SRC_LIST}) -target_link_libraries(${EXE_NAME} ${LDADD_LIBS}) - -add_library(fc-lang-cat STATIC fc-lang-cat.c) - -configure_file(update.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/update.sh @ONLY) +add_library(fc-lang-data STATIC ${SRC_LIST}) diff --git a/fc-lang_conv/conv.pl b/fc-lang_conv/conv.pl new file mode 100755 index 0000000..81d9a2b --- /dev/null +++ b/fc-lang_conv/conv.pl @@ -0,0 +1,323 @@ +#!/usr/bin/perl + +$fc_lang_dir="../fc-lang"; +$fc_lang_conv_dir="files"; + +$cat_srcfile="fc-lang-data.c"; +$cat_hdrfile="fc-lang-data.h"; + +# By defifnition this is invalid code point. +use constant CODE_IN_RANGE => 0xF0F0FFFF; + +sub processFile($$$); +sub parseFile($$$); + +@orth_files=(); +if (opendir(my $dirh, ${fc_lang_dir})) { + my $fname = readdir($dirh); + while (defined($fname)) { + if ($fname =~ m/^.*\.orth$/) { + push @orth_files, $fname; + } + $fname = readdir($dirh); + } + closedir($dirh); + @orth_files = sort(@orth_files); +} else { + die "Failed to open directory!\n"; +} + +$count=0; +@good_src_files=(); +foreach my $fname (@orth_files) { + if ($fname =~ m/^(.*)\.orth$/) { + my $langtag=$1; + my $c_src_name = "${langtag}_orth.c"; + if (processFile($langtag, "${fc_lang_dir}/${fname}", "${fc_lang_conv_dir}/${c_src_name}")) { + push @good_src_files, ${c_src_name}; + $count++; + } + } +} + +# Create catalog header file +if (!open(OUTF, "> $cat_hdrfile")) { + die "Unable to open $cat_hdrfile"; +} +print OUTF< $cat_srcfile")) { + die "Unable to open $cat_srcfile"; +} +print OUTF< + +#include "$cat_hdrfile" + +EOF + +foreach my $c_src_name (@good_src_files) { + print OUTF "#include \"${fc_lang_conv_dir}/${c_src_name}\"\n"; +} +print OUTF "\n"; +print OUTF "static const struct fc_lang_rec fc_lang_data[] = {\n"; +foreach my $c_src_name (@good_src_files) { + my ($langtag, $langtag_lc, $langtag_uc); + $c_src_name =~ m/^(.*)_orth.c$/; + $langtag_lc=lc($1); + $langtag_uc=uc($1); + print OUTF " \"${langtag_lc}\", ${langtag_uc}_LANG_ORTH_SZ, ${langtag_lc}_lang_orth_chars,\n"; +} +print OUTF "};\n"; + +print OUTF<lang_code, lang_code) == 0) + { + found = 1; + break; + } + } + if (found) + return lang_ptr; + return 0; +} + +EOF + +close(OUTF); + +1; + +# functions + +sub processFile($$$) { + my ($langtag, $orth_file, $c_src_name) = @_; + #print "langtag=${langtag}; orth_file=$orth_file; c_src_name=$c_src_name\n"; + my $count = 0; + + my ($fin, $fout); + if (!open($fin, "< $orth_file")) { + print STDERR "Can't open file \"${orth_file}\" for reading!\n"; + return undef; + } + if (!open($fout, "> $c_src_name")) { + print STDERR "Can't open file \"${$c_src_name}\" for reading!\n"; + close($fin); + return undef; + } + + my $dirname = "."; + if ($orth_file =~ m/^(.*)\/[a-zA-Z_0-9]+\.orth$/) { + $dirname = $1; + } + + print "processing orth-file for language tag \"${langtag}\"\n"; + my $langtag_uc = uc($langtag); + my $langtag_lc = lc($langtag); + + print $fout < 0 ? 1 : undef; +} + + +sub parseFile($$$) { + my ($dirname, $fin, $fout) = @_; + + my $count = 0; + my $ok; + my $line = 0; + my ($first, $second); + + my @lines = <$fin>; + + my @lines_=(); + foreach $line (@lines) { + chomp($line); + if (length($line) > 0) { + # skip leading and/or trailing spaces + $line =~ s/^\s*(\S*)\s*$/$1/; + # skip comment + if ($line =~ m/^#.*$/) { + next; + } + # skip trailing comment + $line =~ s/^(\S*)\s*#.*$/$1/; + if (length($line) > 0) { + push @lines_, $line; + } + } + } + + # Combine 2 lines into one + # See file mni.orth + # 1: 0964 + # 2: - 09c4 + @lines=(); + foreach $line (@lines_) { + if ($line =~ m/^\s*-\s*[0-9a-fA-F]+.*$/) { + if (scalar(@lines) > 0) { + my $prev = pop @lines; + $line = $prev . $line; + push @lines, $line; + } + } else { + push @lines, $line; + } + } + + foreach $line (@lines) { + if (length($line) > 0) { + if ($line =~ m/^include\s+(.*)$/) { + $ok = undef; # reset flag before line parsing + my $incFileName = "${dirname}/$1"; + if (open(my $newfin, "< $incFileName")) { + print "process included file: \"${incFileName}\"...\n"; + my $inc_count = parseFile($dirname, $newfin, $fout); + close($newfin); + if ($inc_count > 0) { + $ok = 1; + $count += $inc_count; + } + } else { + print STDERR "Unable to open ${incFileName}\n"; + } + } else { + $ok = undef; # reset flag before line parsing + if ($line =~ m/^(0x)*([0-9a-fA-F]+)$/) { + # line contains one number + $first = hex($2); + $second = 0; + $ok = 1; + } elsif ($line =~ m/^(0x)*([0-9a-fA-F]+)\s+.*$/) { + # line contains one number + # with comment without symbol '#' + $first = hex($2); + $second = 0; + $ok = 1; + } elsif ($line =~ m/^(0x)*([0-9a-fA-F]+)\s*-\s*(0x)*([0-9a-fA-F]+)$/) { + # line contains range + $first = hex($2); + $second = hex($4); + $ok = 1; + } elsif ($line =~ m/^(0x)*([0-9a-fA-F]+)\s*-\s*(0x)*([0-9a-fA-F]+)\s+.*$/) { + # line contains range + # with comment without symbol '#' + $first = hex($2); + $second = hex($4); + $ok = 1; + } elsif ($line =~ m/^(0x)*([0-9a-fA-F]+)\s*\.\.\s*(0x)*([0-9a-fA-F]+)$/) { + # line contains range + $first = hex($2); + $second = hex($4); + $ok = 1; + } elsif ($line =~ m/^(0x)*([0-9a-fA-F]+)\s*\.\.\s*(0x)*([0-9a-fA-F]+)\s+.*$/) { + # line contains range + # with comment without symbol '#' + $first = hex($2); + $second = hex($4); + $ok = 1; + } else { + # just comment without symbol '#' + } + if ($ok) { + if (0 == $second) { + printf $fout ("\t0x%04x,\n", $first); + $count++; + } else { + printf $fout ("\t0x%08x, 0x%04x, 0x%04x, // range\n", CODE_IN_RANGE, $first, $second); + $count += 3; + } + } + } + if (!$ok) { + print STDERR "Failed to parse line: ${line}\n"; + } + } + } + return $count; +} diff --git a/fc-lang_conv/fc-lang-cat.h b/fc-lang_conv/fc-lang-cat.h deleted file mode 100644 index 8aa94bd..0000000 --- a/fc-lang_conv/fc-lang-cat.h +++ /dev/null @@ -1,49 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2019-2021 by Chernov A.A. * - * valexlin@gmail.com * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation, either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program. If not, see . * - ***************************************************************************/ - -#ifndef FCLANGCAT_H -#define FCLANGCAT_H - -#ifdef __cplusplus -extern "C" { -#endif - -struct fc_lang_catalog -{ - const char* lang_code; - const unsigned int char_set_sz; - const unsigned int* char_set; -}; - -// FontConfig languages symbols database. -// Language code is a locale name in 2 or 3 letter code in ISO 639 and ISO 3166-1 alpha-2. -extern const struct fc_lang_catalog fc_lang_cat[]; -extern const unsigned int fc_lang_cat_sz; - -/** - * @brief Find language in database by code - * @param lang_code language code in 2 or 3 letter code in ISO 639 and ISO 3166-1 alpha-2 - * @return Pointer to fc_lang_catalog instance if language found, NULL otherwise. - */ -const struct fc_lang_catalog* fc_lang_cat_find(const char* lang_code); - -#ifdef __cplusplus -} -#endif - -#endif // FCLANGCAT_H diff --git a/fc-lang_conv/fc-lang-cat_find.c.tmpl b/fc-lang_conv/fc-lang-cat_find.c.tmpl deleted file mode 100644 index 06d7d30..0000000 --- a/fc-lang_conv/fc-lang-cat_find.c.tmpl +++ /dev/null @@ -1,18 +0,0 @@ - -const struct fc_lang_catalog* fc_lang_cat_find(const char* lang_code) -{ - const struct fc_lang_catalog* lang_ptr = fc_lang_cat; - int i; - int found = 0; - for (i = 0; i < fc_lang_cat_sz; i++) - { - if (strcmp(lang_ptr->lang_code, lang_code) == 0) - { - found = 1; - break; - } - } - if (found) - return lang_ptr; - return 0; -} diff --git a/fc-lang_conv/fc-lang-cat.c b/fc-lang_conv/fc-lang-data.c similarity index 97% rename from fc-lang_conv/fc-lang-cat.c rename to fc-lang_conv/fc-lang-data.c index bebf482..73f6efd 100644 --- a/fc-lang_conv/fc-lang-cat.c +++ b/fc-lang_conv/fc-lang-data.c @@ -1,10 +1,13 @@ - +// FontConfig database of language orthographies. +// License: Public Domain. // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw + +#include -#include "fc-lang-cat.h" +#include "fc-lang-data.h" #include "files/aa_orth.c" #include "files/ab_orth.c" @@ -24,10 +27,10 @@ #include "files/ber_dz_orth.c" #include "files/ber_ma_orth.c" #include "files/bg_orth.c" -#include "files/bho_orth.c" #include "files/bh_orth.c" -#include "files/bin_orth.c" +#include "files/bho_orth.c" #include "files/bi_orth.c" +#include "files/bin_orth.c" #include "files/bm_orth.c" #include "files/bn_orth.c" #include "files/bo_orth.c" @@ -38,13 +41,13 @@ #include "files/byn_orth.c" #include "files/ca_orth.c" #include "files/ce_orth.c" -#include "files/chm_orth.c" #include "files/ch_orth.c" +#include "files/chm_orth.c" #include "files/chr_orth.c" #include "files/co_orth.c" #include "files/crh_orth.c" -#include "files/csb_orth.c" #include "files/cs_orth.c" +#include "files/csb_orth.c" #include "files/cu_orth.c" #include "files/cv_orth.c" #include "files/cy_orth.c" @@ -63,8 +66,8 @@ #include "files/fa_orth.c" #include "files/fat_orth.c" #include "files/ff_orth.c" -#include "files/fil_orth.c" #include "files/fi_orth.c" +#include "files/fil_orth.c" #include "files/fj_orth.c" #include "files/fo_orth.c" #include "files/fr_orth.c" @@ -101,30 +104,30 @@ #include "files/iu_orth.c" #include "files/ja_orth.c" #include "files/jv_orth.c" +#include "files/ka_orth.c" #include "files/kaa_orth.c" #include "files/kab_orth.c" -#include "files/ka_orth.c" #include "files/ki_orth.c" #include "files/kj_orth.c" #include "files/kk_orth.c" #include "files/kl_orth.c" #include "files/km_orth.c" #include "files/kn_orth.c" -#include "files/kok_orth.c" #include "files/ko_orth.c" +#include "files/kok_orth.c" #include "files/kr_orth.c" #include "files/ks_orth.c" #include "files/ku_am_orth.c" #include "files/ku_iq_orth.c" #include "files/ku_ir_orth.c" -#include "files/kum_orth.c" #include "files/ku_tr_orth.c" +#include "files/kum_orth.c" #include "files/kv_orth.c" -#include "files/kwm_orth.c" #include "files/kw_orth.c" +#include "files/kwm_orth.c" #include "files/ky_orth.c" -#include "files/lah_orth.c" #include "files/la_orth.c" +#include "files/lah_orth.c" #include "files/lb_orth.c" #include "files/lez_orth.c" #include "files/lg_orth.c" @@ -140,8 +143,8 @@ #include "files/mk_orth.c" #include "files/ml_orth.c" #include "files/mn_cn_orth.c" -#include "files/mni_orth.c" #include "files/mn_mn_orth.c" +#include "files/mni_orth.c" #include "files/mo_orth.c" #include "files/mr_orth.c" #include "files/ms_orth.c" @@ -166,9 +169,9 @@ #include "files/os_orth.c" #include "files/ota_orth.c" #include "files/pa_orth.c" +#include "files/pa_pk_orth.c" #include "files/pap_an_orth.c" #include "files/pap_aw_orth.c" -#include "files/pa_pk_orth.c" #include "files/pes_orth.c" #include "files/pl_orth.c" #include "files/prs_orth.c" @@ -182,25 +185,25 @@ #include "files/ro_orth.c" #include "files/ru_orth.c" #include "files/rw_orth.c" -#include "files/sah_orth.c" #include "files/sa_orth.c" +#include "files/sah_orth.c" #include "files/sat_orth.c" -#include "files/sco_orth.c" #include "files/sc_orth.c" +#include "files/sco_orth.c" #include "files/sd_orth.c" -#include "files/sel_orth.c" #include "files/se_orth.c" +#include "files/sel_orth.c" #include "files/sg_orth.c" #include "files/sh_orth.c" #include "files/shs_orth.c" -#include "files/sid_orth.c" #include "files/si_orth.c" +#include "files/sid_orth.c" #include "files/sk_orth.c" #include "files/sl_orth.c" +#include "files/sm_orth.c" #include "files/sma_orth.c" #include "files/smj_orth.c" #include "files/smn_orth.c" -#include "files/sm_orth.c" #include "files/sms_orth.c" #include "files/sn_orth.c" #include "files/so_orth.c" @@ -239,8 +242,8 @@ #include "files/vi_orth.c" #include "files/vo_orth.c" #include "files/vot_orth.c" -#include "files/wal_orth.c" #include "files/wa_orth.c" +#include "files/wal_orth.c" #include "files/wen_orth.c" #include "files/wo_orth.c" #include "files/xh_orth.c" @@ -255,10 +258,7 @@ #include "files/zh_tw_orth.c" #include "files/zu_orth.c" -#include - -#define FC_LANG_CAT_SZ 248 -const struct fc_lang_catalog fc_lang_cat[] = { +static const struct fc_lang_rec fc_lang_data[] = { "aa", AA_LANG_ORTH_SZ, aa_lang_orth_chars, "ab", AB_LANG_ORTH_SZ, ab_lang_orth_chars, "af", AF_LANG_ORTH_SZ, af_lang_orth_chars, @@ -277,10 +277,10 @@ const struct fc_lang_catalog fc_lang_cat[] = { "ber_dz", BER_DZ_LANG_ORTH_SZ, ber_dz_lang_orth_chars, "ber_ma", BER_MA_LANG_ORTH_SZ, ber_ma_lang_orth_chars, "bg", BG_LANG_ORTH_SZ, bg_lang_orth_chars, - "bho", BHO_LANG_ORTH_SZ, bho_lang_orth_chars, "bh", BH_LANG_ORTH_SZ, bh_lang_orth_chars, - "bin", BIN_LANG_ORTH_SZ, bin_lang_orth_chars, + "bho", BHO_LANG_ORTH_SZ, bho_lang_orth_chars, "bi", BI_LANG_ORTH_SZ, bi_lang_orth_chars, + "bin", BIN_LANG_ORTH_SZ, bin_lang_orth_chars, "bm", BM_LANG_ORTH_SZ, bm_lang_orth_chars, "bn", BN_LANG_ORTH_SZ, bn_lang_orth_chars, "bo", BO_LANG_ORTH_SZ, bo_lang_orth_chars, @@ -291,13 +291,13 @@ const struct fc_lang_catalog fc_lang_cat[] = { "byn", BYN_LANG_ORTH_SZ, byn_lang_orth_chars, "ca", CA_LANG_ORTH_SZ, ca_lang_orth_chars, "ce", CE_LANG_ORTH_SZ, ce_lang_orth_chars, - "chm", CHM_LANG_ORTH_SZ, chm_lang_orth_chars, "ch", CH_LANG_ORTH_SZ, ch_lang_orth_chars, + "chm", CHM_LANG_ORTH_SZ, chm_lang_orth_chars, "chr", CHR_LANG_ORTH_SZ, chr_lang_orth_chars, "co", CO_LANG_ORTH_SZ, co_lang_orth_chars, "crh", CRH_LANG_ORTH_SZ, crh_lang_orth_chars, - "csb", CSB_LANG_ORTH_SZ, csb_lang_orth_chars, "cs", CS_LANG_ORTH_SZ, cs_lang_orth_chars, + "csb", CSB_LANG_ORTH_SZ, csb_lang_orth_chars, "cu", CU_LANG_ORTH_SZ, cu_lang_orth_chars, "cv", CV_LANG_ORTH_SZ, cv_lang_orth_chars, "cy", CY_LANG_ORTH_SZ, cy_lang_orth_chars, @@ -316,8 +316,8 @@ const struct fc_lang_catalog fc_lang_cat[] = { "fa", FA_LANG_ORTH_SZ, fa_lang_orth_chars, "fat", FAT_LANG_ORTH_SZ, fat_lang_orth_chars, "ff", FF_LANG_ORTH_SZ, ff_lang_orth_chars, - "fil", FIL_LANG_ORTH_SZ, fil_lang_orth_chars, "fi", FI_LANG_ORTH_SZ, fi_lang_orth_chars, + "fil", FIL_LANG_ORTH_SZ, fil_lang_orth_chars, "fj", FJ_LANG_ORTH_SZ, fj_lang_orth_chars, "fo", FO_LANG_ORTH_SZ, fo_lang_orth_chars, "fr", FR_LANG_ORTH_SZ, fr_lang_orth_chars, @@ -354,30 +354,30 @@ const struct fc_lang_catalog fc_lang_cat[] = { "iu", IU_LANG_ORTH_SZ, iu_lang_orth_chars, "ja", JA_LANG_ORTH_SZ, ja_lang_orth_chars, "jv", JV_LANG_ORTH_SZ, jv_lang_orth_chars, + "ka", KA_LANG_ORTH_SZ, ka_lang_orth_chars, "kaa", KAA_LANG_ORTH_SZ, kaa_lang_orth_chars, "kab", KAB_LANG_ORTH_SZ, kab_lang_orth_chars, - "ka", KA_LANG_ORTH_SZ, ka_lang_orth_chars, "ki", KI_LANG_ORTH_SZ, ki_lang_orth_chars, "kj", KJ_LANG_ORTH_SZ, kj_lang_orth_chars, "kk", KK_LANG_ORTH_SZ, kk_lang_orth_chars, "kl", KL_LANG_ORTH_SZ, kl_lang_orth_chars, "km", KM_LANG_ORTH_SZ, km_lang_orth_chars, "kn", KN_LANG_ORTH_SZ, kn_lang_orth_chars, - "kok", KOK_LANG_ORTH_SZ, kok_lang_orth_chars, "ko", KO_LANG_ORTH_SZ, ko_lang_orth_chars, + "kok", KOK_LANG_ORTH_SZ, kok_lang_orth_chars, "kr", KR_LANG_ORTH_SZ, kr_lang_orth_chars, "ks", KS_LANG_ORTH_SZ, ks_lang_orth_chars, "ku_am", KU_AM_LANG_ORTH_SZ, ku_am_lang_orth_chars, "ku_iq", KU_IQ_LANG_ORTH_SZ, ku_iq_lang_orth_chars, "ku_ir", KU_IR_LANG_ORTH_SZ, ku_ir_lang_orth_chars, - "kum", KUM_LANG_ORTH_SZ, kum_lang_orth_chars, "ku_tr", KU_TR_LANG_ORTH_SZ, ku_tr_lang_orth_chars, + "kum", KUM_LANG_ORTH_SZ, kum_lang_orth_chars, "kv", KV_LANG_ORTH_SZ, kv_lang_orth_chars, - "kwm", KWM_LANG_ORTH_SZ, kwm_lang_orth_chars, "kw", KW_LANG_ORTH_SZ, kw_lang_orth_chars, + "kwm", KWM_LANG_ORTH_SZ, kwm_lang_orth_chars, "ky", KY_LANG_ORTH_SZ, ky_lang_orth_chars, - "lah", LAH_LANG_ORTH_SZ, lah_lang_orth_chars, "la", LA_LANG_ORTH_SZ, la_lang_orth_chars, + "lah", LAH_LANG_ORTH_SZ, lah_lang_orth_chars, "lb", LB_LANG_ORTH_SZ, lb_lang_orth_chars, "lez", LEZ_LANG_ORTH_SZ, lez_lang_orth_chars, "lg", LG_LANG_ORTH_SZ, lg_lang_orth_chars, @@ -393,8 +393,8 @@ const struct fc_lang_catalog fc_lang_cat[] = { "mk", MK_LANG_ORTH_SZ, mk_lang_orth_chars, "ml", ML_LANG_ORTH_SZ, ml_lang_orth_chars, "mn_cn", MN_CN_LANG_ORTH_SZ, mn_cn_lang_orth_chars, - "mni", MNI_LANG_ORTH_SZ, mni_lang_orth_chars, "mn_mn", MN_MN_LANG_ORTH_SZ, mn_mn_lang_orth_chars, + "mni", MNI_LANG_ORTH_SZ, mni_lang_orth_chars, "mo", MO_LANG_ORTH_SZ, mo_lang_orth_chars, "mr", MR_LANG_ORTH_SZ, mr_lang_orth_chars, "ms", MS_LANG_ORTH_SZ, ms_lang_orth_chars, @@ -419,9 +419,9 @@ const struct fc_lang_catalog fc_lang_cat[] = { "os", OS_LANG_ORTH_SZ, os_lang_orth_chars, "ota", OTA_LANG_ORTH_SZ, ota_lang_orth_chars, "pa", PA_LANG_ORTH_SZ, pa_lang_orth_chars, + "pa_pk", PA_PK_LANG_ORTH_SZ, pa_pk_lang_orth_chars, "pap_an", PAP_AN_LANG_ORTH_SZ, pap_an_lang_orth_chars, "pap_aw", PAP_AW_LANG_ORTH_SZ, pap_aw_lang_orth_chars, - "pa_pk", PA_PK_LANG_ORTH_SZ, pa_pk_lang_orth_chars, "pes", PES_LANG_ORTH_SZ, pes_lang_orth_chars, "pl", PL_LANG_ORTH_SZ, pl_lang_orth_chars, "prs", PRS_LANG_ORTH_SZ, prs_lang_orth_chars, @@ -435,25 +435,25 @@ const struct fc_lang_catalog fc_lang_cat[] = { "ro", RO_LANG_ORTH_SZ, ro_lang_orth_chars, "ru", RU_LANG_ORTH_SZ, ru_lang_orth_chars, "rw", RW_LANG_ORTH_SZ, rw_lang_orth_chars, - "sah", SAH_LANG_ORTH_SZ, sah_lang_orth_chars, "sa", SA_LANG_ORTH_SZ, sa_lang_orth_chars, + "sah", SAH_LANG_ORTH_SZ, sah_lang_orth_chars, "sat", SAT_LANG_ORTH_SZ, sat_lang_orth_chars, - "sco", SCO_LANG_ORTH_SZ, sco_lang_orth_chars, "sc", SC_LANG_ORTH_SZ, sc_lang_orth_chars, + "sco", SCO_LANG_ORTH_SZ, sco_lang_orth_chars, "sd", SD_LANG_ORTH_SZ, sd_lang_orth_chars, - "sel", SEL_LANG_ORTH_SZ, sel_lang_orth_chars, "se", SE_LANG_ORTH_SZ, se_lang_orth_chars, + "sel", SEL_LANG_ORTH_SZ, sel_lang_orth_chars, "sg", SG_LANG_ORTH_SZ, sg_lang_orth_chars, "sh", SH_LANG_ORTH_SZ, sh_lang_orth_chars, "shs", SHS_LANG_ORTH_SZ, shs_lang_orth_chars, - "sid", SID_LANG_ORTH_SZ, sid_lang_orth_chars, "si", SI_LANG_ORTH_SZ, si_lang_orth_chars, + "sid", SID_LANG_ORTH_SZ, sid_lang_orth_chars, "sk", SK_LANG_ORTH_SZ, sk_lang_orth_chars, "sl", SL_LANG_ORTH_SZ, sl_lang_orth_chars, + "sm", SM_LANG_ORTH_SZ, sm_lang_orth_chars, "sma", SMA_LANG_ORTH_SZ, sma_lang_orth_chars, "smj", SMJ_LANG_ORTH_SZ, smj_lang_orth_chars, "smn", SMN_LANG_ORTH_SZ, smn_lang_orth_chars, - "sm", SM_LANG_ORTH_SZ, sm_lang_orth_chars, "sms", SMS_LANG_ORTH_SZ, sms_lang_orth_chars, "sn", SN_LANG_ORTH_SZ, sn_lang_orth_chars, "so", SO_LANG_ORTH_SZ, so_lang_orth_chars, @@ -492,8 +492,8 @@ const struct fc_lang_catalog fc_lang_cat[] = { "vi", VI_LANG_ORTH_SZ, vi_lang_orth_chars, "vo", VO_LANG_ORTH_SZ, vo_lang_orth_chars, "vot", VOT_LANG_ORTH_SZ, vot_lang_orth_chars, - "wal", WAL_LANG_ORTH_SZ, wal_lang_orth_chars, "wa", WA_LANG_ORTH_SZ, wa_lang_orth_chars, + "wal", WAL_LANG_ORTH_SZ, wal_lang_orth_chars, "wen", WEN_LANG_ORTH_SZ, wen_lang_orth_chars, "wo", WO_LANG_ORTH_SZ, wo_lang_orth_chars, "xh", XH_LANG_ORTH_SZ, xh_lang_orth_chars, @@ -508,16 +508,20 @@ const struct fc_lang_catalog fc_lang_cat[] = { "zh_tw", ZH_TW_LANG_ORTH_SZ, zh_tw_lang_orth_chars, "zu", ZU_LANG_ORTH_SZ, zu_lang_orth_chars, }; -const unsigned int fc_lang_cat_sz = 248; +const struct fc_lang_rec* get_fc_lang_data() { + return &fc_lang_data[0]; +} + +unsigned int get_fc_lang_data_size() { + return FC_LANG_DATA_SZ; +} -const struct fc_lang_catalog* fc_lang_cat_find(const char* lang_code) -{ - const struct fc_lang_catalog* lang_ptr = fc_lang_cat; +const struct fc_lang_rec* fc_lang_find(const char* lang_code) { + const struct fc_lang_rec* lang_ptr = fc_lang_data; int i; int found = 0; - for (i = 0; i < fc_lang_cat_sz; i++) - { + for (i = 0; i < FC_LANG_DATA_SZ; i++) { if (strcmp(lang_ptr->lang_code, lang_code) == 0) { found = 1; diff --git a/fc-lang_conv/fc-lang-data.h b/fc-lang_conv/fc-lang-data.h new file mode 100644 index 0000000..2aff07c --- /dev/null +++ b/fc-lang_conv/fc-lang-data.h @@ -0,0 +1,47 @@ +// FontConfig database of language orthographies. +// License: Public Domain. +// This file is autogenerated from fc-lang database. +// https://www.freedesktop.org/wiki/Software/fontconfig/ +// https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang +// by convert utility from https://github.com/virxkane/freetype_textdraw + +#ifndef FC_LANG_DATA_H +#define FC_LANG_DATA_H + +#ifdef __cplusplus +extern "C" { +#endif + +#define FC_LANG_DATA_SZ 248 + +struct fc_lang_rec +{ + const char* lang_code; + const unsigned int char_set_sz; + const unsigned int* char_set; +}; + +/** + * @brief Return pointer to FontConfig database of language orthographies + * @return array of fc_lang_rec records. + */ +const struct fc_lang_rec* get_fc_lang_data(); + +/** + * @brief Get count of records in the FontConfig database of language orthographies. + * @return Count of records in array. + */ +unsigned int get_fc_lang_data_size(); + +/** + * @brief Find language in database by code + * @param lang_code language code is exactly as it appears in the fc_lang catalog. + * @return Pointer to fc_lang_rec instance if language found, NULL otherwise. + */ +const struct fc_lang_rec* fc_lang_find(const char* lang_code); + +#ifdef __cplusplus +} +#endif + +#endif // FC_LANG_DATA_H diff --git a/fc-lang_conv/files/aa_orth.c b/fc-lang_conv/files/aa_orth.c index 989b3ed..1e39541 100644 --- a/fc-lang_conv/files/aa_orth.c +++ b/fc-lang_conv/files/aa_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int aa_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ab_orth.c b/fc-lang_conv/files/ab_orth.c index 818293c..8d35067 100644 --- a/fc-lang_conv/files/ab_orth.c +++ b/fc-lang_conv/files/ab_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ab_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/af_orth.c b/fc-lang_conv/files/af_orth.c index df69478..dfb05a0 100644 --- a/fc-lang_conv/files/af_orth.c +++ b/fc-lang_conv/files/af_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int af_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ak_orth.c b/fc-lang_conv/files/ak_orth.c index 5b5a068..2feb74a 100644 --- a/fc-lang_conv/files/ak_orth.c +++ b/fc-lang_conv/files/ak_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ak_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/am_orth.c b/fc-lang_conv/files/am_orth.c index 86ea7a5..f2b915a 100644 --- a/fc-lang_conv/files/am_orth.c +++ b/fc-lang_conv/files/am_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int am_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/an_orth.c b/fc-lang_conv/files/an_orth.c index fddeff7..9973f67 100644 --- a/fc-lang_conv/files/an_orth.c +++ b/fc-lang_conv/files/an_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int an_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ar_orth.c b/fc-lang_conv/files/ar_orth.c index 5182bd4..41cc70c 100644 --- a/fc-lang_conv/files/ar_orth.c +++ b/fc-lang_conv/files/ar_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ar_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x063a, // range diff --git a/fc-lang_conv/files/as_orth.c b/fc-lang_conv/files/as_orth.c index 109967a..e367539 100644 --- a/fc-lang_conv/files/as_orth.c +++ b/fc-lang_conv/files/as_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int as_lang_orth_chars[] = { 0xf0f0ffff, 0x0981, 0x0983, // range diff --git a/fc-lang_conv/files/ast_orth.c b/fc-lang_conv/files/ast_orth.c index 33f69b3..66780cd 100644 --- a/fc-lang_conv/files/ast_orth.c +++ b/fc-lang_conv/files/ast_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ast_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/av_orth.c b/fc-lang_conv/files/av_orth.c index 30069d9..384d709 100644 --- a/fc-lang_conv/files/av_orth.c +++ b/fc-lang_conv/files/av_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int av_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/ay_orth.c b/fc-lang_conv/files/ay_orth.c index a02a4b9..493067d 100644 --- a/fc-lang_conv/files/ay_orth.c +++ b/fc-lang_conv/files/ay_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ay_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/az_az_orth.c b/fc-lang_conv/files/az_az_orth.c index 799de22..89495a1 100644 --- a/fc-lang_conv/files/az_az_orth.c +++ b/fc-lang_conv/files/az_az_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int az_az_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/az_ir_orth.c b/fc-lang_conv/files/az_ir_orth.c index 146bb5a..7ea4d8d 100644 --- a/fc-lang_conv/files/az_ir_orth.c +++ b/fc-lang_conv/files/az_ir_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int az_ir_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/ba_orth.c b/fc-lang_conv/files/ba_orth.c index bd71c04..866ac2c 100644 --- a/fc-lang_conv/files/ba_orth.c +++ b/fc-lang_conv/files/ba_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ba_lang_orth_chars[] = { 0xf0f0ffff, 0x0410, 0x044f, // range diff --git a/fc-lang_conv/files/be_orth.c b/fc-lang_conv/files/be_orth.c index 2c457dd..ee4334e 100644 --- a/fc-lang_conv/files/be_orth.c +++ b/fc-lang_conv/files/be_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int be_lang_orth_chars[] = { 0x0406, diff --git a/fc-lang_conv/files/ber_dz_orth.c b/fc-lang_conv/files/ber_dz_orth.c index a2b6746..6ea1b0c 100644 --- a/fc-lang_conv/files/ber_dz_orth.c +++ b/fc-lang_conv/files/ber_dz_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ber_dz_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ber_ma_orth.c b/fc-lang_conv/files/ber_ma_orth.c index e363fd3..c7fce72 100644 --- a/fc-lang_conv/files/ber_ma_orth.c +++ b/fc-lang_conv/files/ber_ma_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ber_ma_lang_orth_chars[] = { 0xf0f0ffff, 0x2d30, 0x2d31, // range diff --git a/fc-lang_conv/files/bg_orth.c b/fc-lang_conv/files/bg_orth.c index d462535..1c5d12e 100644 --- a/fc-lang_conv/files/bg_orth.c +++ b/fc-lang_conv/files/bg_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bg_lang_orth_chars[] = { 0xf0f0ffff, 0x0410, 0x042a, // range diff --git a/fc-lang_conv/files/bh_orth.c b/fc-lang_conv/files/bh_orth.c index 86173c4..bf17631 100644 --- a/fc-lang_conv/files/bh_orth.c +++ b/fc-lang_conv/files/bh_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bh_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/bho_orth.c b/fc-lang_conv/files/bho_orth.c index a9f587b..af89441 100644 --- a/fc-lang_conv/files/bho_orth.c +++ b/fc-lang_conv/files/bho_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bho_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/bi_orth.c b/fc-lang_conv/files/bi_orth.c index 1426873..a4c0831 100644 --- a/fc-lang_conv/files/bi_orth.c +++ b/fc-lang_conv/files/bi_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bi_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/bin_orth.c b/fc-lang_conv/files/bin_orth.c index e29ba18..400fb60 100644 --- a/fc-lang_conv/files/bin_orth.c +++ b/fc-lang_conv/files/bin_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bin_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/bm_orth.c b/fc-lang_conv/files/bm_orth.c index 98ba6ca..6a77540 100644 --- a/fc-lang_conv/files/bm_orth.c +++ b/fc-lang_conv/files/bm_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bm_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/bn_orth.c b/fc-lang_conv/files/bn_orth.c index 370fca6..f8ffab2 100644 --- a/fc-lang_conv/files/bn_orth.c +++ b/fc-lang_conv/files/bn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bn_lang_orth_chars[] = { 0xf0f0ffff, 0x0981, 0x0983, // range diff --git a/fc-lang_conv/files/bo_orth.c b/fc-lang_conv/files/bo_orth.c index ad7a8e6..10514f2 100644 --- a/fc-lang_conv/files/bo_orth.c +++ b/fc-lang_conv/files/bo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bo_lang_orth_chars[] = { 0xf0f0ffff, 0x0f40, 0x0f47, // range diff --git a/fc-lang_conv/files/br_orth.c b/fc-lang_conv/files/br_orth.c index 9751a7e..43c37c6 100644 --- a/fc-lang_conv/files/br_orth.c +++ b/fc-lang_conv/files/br_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int br_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/brx_orth.c b/fc-lang_conv/files/brx_orth.c index 7383006..40e9bd9 100644 --- a/fc-lang_conv/files/brx_orth.c +++ b/fc-lang_conv/files/brx_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int brx_lang_orth_chars[] = { 0xf0f0ffff, 0x0901, 0x0903, // range diff --git a/fc-lang_conv/files/bs_orth.c b/fc-lang_conv/files/bs_orth.c index a20b8ab..644cd3c 100644 --- a/fc-lang_conv/files/bs_orth.c +++ b/fc-lang_conv/files/bs_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bs_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/bua_orth.c b/fc-lang_conv/files/bua_orth.c index 11a5ee0..728d0b6 100644 --- a/fc-lang_conv/files/bua_orth.c +++ b/fc-lang_conv/files/bua_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int bua_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/byn_orth.c b/fc-lang_conv/files/byn_orth.c index 8fdb642..c9448d0 100644 --- a/fc-lang_conv/files/byn_orth.c +++ b/fc-lang_conv/files/byn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int byn_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/ca_orth.c b/fc-lang_conv/files/ca_orth.c index 847290f..127185d 100644 --- a/fc-lang_conv/files/ca_orth.c +++ b/fc-lang_conv/files/ca_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ca_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ce_orth.c b/fc-lang_conv/files/ce_orth.c index ff9d924..bfe8bff 100644 --- a/fc-lang_conv/files/ce_orth.c +++ b/fc-lang_conv/files/ce_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ce_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/ch_orth.c b/fc-lang_conv/files/ch_orth.c index e2fb11d..b9259f6 100644 --- a/fc-lang_conv/files/ch_orth.c +++ b/fc-lang_conv/files/ch_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ch_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/chm_orth.c b/fc-lang_conv/files/chm_orth.c index c8062be..0847f8b 100644 --- a/fc-lang_conv/files/chm_orth.c +++ b/fc-lang_conv/files/chm_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int chm_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/chr_orth.c b/fc-lang_conv/files/chr_orth.c index 3c053aa..6d5f70e 100644 --- a/fc-lang_conv/files/chr_orth.c +++ b/fc-lang_conv/files/chr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int chr_lang_orth_chars[] = { 0xf0f0ffff, 0x13a0, 0x13f4, // range diff --git a/fc-lang_conv/files/co_orth.c b/fc-lang_conv/files/co_orth.c index effd1bc..7fca92c 100644 --- a/fc-lang_conv/files/co_orth.c +++ b/fc-lang_conv/files/co_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int co_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/crh_orth.c b/fc-lang_conv/files/crh_orth.c index d92db96..6a6985c 100644 --- a/fc-lang_conv/files/crh_orth.c +++ b/fc-lang_conv/files/crh_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int crh_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/cs_orth.c b/fc-lang_conv/files/cs_orth.c index a530605..d9399c5 100644 --- a/fc-lang_conv/files/cs_orth.c +++ b/fc-lang_conv/files/cs_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int cs_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/csb_orth.c b/fc-lang_conv/files/csb_orth.c index 30819a2..0e6dc9f 100644 --- a/fc-lang_conv/files/csb_orth.c +++ b/fc-lang_conv/files/csb_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int csb_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/cu_orth.c b/fc-lang_conv/files/cu_orth.c index 4f85b9d..7fb347f 100644 --- a/fc-lang_conv/files/cu_orth.c +++ b/fc-lang_conv/files/cu_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int cu_lang_orth_chars[] = { 0xf0f0ffff, 0x0401, 0x0402, // range diff --git a/fc-lang_conv/files/cv_orth.c b/fc-lang_conv/files/cv_orth.c index 29c07bf..85a1f0f 100644 --- a/fc-lang_conv/files/cv_orth.c +++ b/fc-lang_conv/files/cv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int cv_lang_orth_chars[] = { 0x04aa, diff --git a/fc-lang_conv/files/cy_orth.c b/fc-lang_conv/files/cy_orth.c index f5c3031..9f2d3e6 100644 --- a/fc-lang_conv/files/cy_orth.c +++ b/fc-lang_conv/files/cy_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int cy_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/da_orth.c b/fc-lang_conv/files/da_orth.c index da79fa6..1b32d82 100644 --- a/fc-lang_conv/files/da_orth.c +++ b/fc-lang_conv/files/da_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int da_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/de_orth.c b/fc-lang_conv/files/de_orth.c index f5a32d6..e530713 100644 --- a/fc-lang_conv/files/de_orth.c +++ b/fc-lang_conv/files/de_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int de_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/doi_orth.c b/fc-lang_conv/files/doi_orth.c index e7079e2..c8601b9 100644 --- a/fc-lang_conv/files/doi_orth.c +++ b/fc-lang_conv/files/doi_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int doi_lang_orth_chars[] = { 0xf0f0ffff, 0x0902, 0x0903, // range diff --git a/fc-lang_conv/files/dv_orth.c b/fc-lang_conv/files/dv_orth.c index edd584b..f558604 100644 --- a/fc-lang_conv/files/dv_orth.c +++ b/fc-lang_conv/files/dv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int dv_lang_orth_chars[] = { 0xf0f0ffff, 0x0780, 0x0797, // range diff --git a/fc-lang_conv/files/dz_orth.c b/fc-lang_conv/files/dz_orth.c index 708f34c..20f5bf4 100644 --- a/fc-lang_conv/files/dz_orth.c +++ b/fc-lang_conv/files/dz_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int dz_lang_orth_chars[] = { 0xf0f0ffff, 0x0f40, 0x0f47, // range diff --git a/fc-lang_conv/files/ee_orth.c b/fc-lang_conv/files/ee_orth.c index cf6080b..db7d493 100644 --- a/fc-lang_conv/files/ee_orth.c +++ b/fc-lang_conv/files/ee_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ee_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/el_orth.c b/fc-lang_conv/files/el_orth.c index 66909e4..7e1668c 100644 --- a/fc-lang_conv/files/el_orth.c +++ b/fc-lang_conv/files/el_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int el_lang_orth_chars[] = { 0x0386, diff --git a/fc-lang_conv/files/en_orth.c b/fc-lang_conv/files/en_orth.c index 70caa6a..3a8d081 100644 --- a/fc-lang_conv/files/en_orth.c +++ b/fc-lang_conv/files/en_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int en_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/eo_orth.c b/fc-lang_conv/files/eo_orth.c index 86ac438..93d397c 100644 --- a/fc-lang_conv/files/eo_orth.c +++ b/fc-lang_conv/files/eo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int eo_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/es_orth.c b/fc-lang_conv/files/es_orth.c index 9d59137..254672a 100644 --- a/fc-lang_conv/files/es_orth.c +++ b/fc-lang_conv/files/es_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int es_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/et_orth.c b/fc-lang_conv/files/et_orth.c index 5e25071..8cba7de 100644 --- a/fc-lang_conv/files/et_orth.c +++ b/fc-lang_conv/files/et_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int et_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/eu_orth.c b/fc-lang_conv/files/eu_orth.c index 3683e5a..20a8d54 100644 --- a/fc-lang_conv/files/eu_orth.c +++ b/fc-lang_conv/files/eu_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int eu_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fa_orth.c b/fc-lang_conv/files/fa_orth.c index 05df94f..adb9185 100644 --- a/fc-lang_conv/files/fa_orth.c +++ b/fc-lang_conv/files/fa_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fa_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/fat_orth.c b/fc-lang_conv/files/fat_orth.c index d6afdd2..c33dc5a 100644 --- a/fc-lang_conv/files/fat_orth.c +++ b/fc-lang_conv/files/fat_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fat_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fc-lang-cat.c b/fc-lang_conv/files/fc-lang-cat.c deleted file mode 100644 index 16d5b25..0000000 --- a/fc-lang_conv/files/fc-lang-cat.c +++ /dev/null @@ -1,251 +0,0 @@ - -#define FC_LANG_CAT_SZ 246 -struct fc_lang_catalog* fc_lang_cat = { - "aa", AA_LANG_ORTH_SZ, aa_lang_orth_chars, - "ab", AB_LANG_ORTH_SZ, ab_lang_orth_chars, - "af", AF_LANG_ORTH_SZ, af_lang_orth_chars, - "ak", AK_LANG_ORTH_SZ, ak_lang_orth_chars, - "am", AM_LANG_ORTH_SZ, am_lang_orth_chars, - "an", AN_LANG_ORTH_SZ, an_lang_orth_chars, - "ar", AR_LANG_ORTH_SZ, ar_lang_orth_chars, - "as", AS_LANG_ORTH_SZ, as_lang_orth_chars, - "ast", AST_LANG_ORTH_SZ, ast_lang_orth_chars, - "av", AV_LANG_ORTH_SZ, av_lang_orth_chars, - "ay", AY_LANG_ORTH_SZ, ay_lang_orth_chars, - "az_az", AZ_AZ_LANG_ORTH_SZ, az_az_lang_orth_chars, - "az_ir", AZ_IR_LANG_ORTH_SZ, az_ir_lang_orth_chars, - "ba", BA_LANG_ORTH_SZ, ba_lang_orth_chars, - "be", BE_LANG_ORTH_SZ, be_lang_orth_chars, - "ber_dz", BER_DZ_LANG_ORTH_SZ, ber_dz_lang_orth_chars, - "ber_ma", BER_MA_LANG_ORTH_SZ, ber_ma_lang_orth_chars, - "bg", BG_LANG_ORTH_SZ, bg_lang_orth_chars, - "bho", BHO_LANG_ORTH_SZ, bho_lang_orth_chars, - "bh", BH_LANG_ORTH_SZ, bh_lang_orth_chars, - "bin", BIN_LANG_ORTH_SZ, bin_lang_orth_chars, - "bi", BI_LANG_ORTH_SZ, bi_lang_orth_chars, - "bm", BM_LANG_ORTH_SZ, bm_lang_orth_chars, - "bn", BN_LANG_ORTH_SZ, bn_lang_orth_chars, - "bo", BO_LANG_ORTH_SZ, bo_lang_orth_chars, - "br", BR_LANG_ORTH_SZ, br_lang_orth_chars, - "brx", BRX_LANG_ORTH_SZ, brx_lang_orth_chars, - "bs", BS_LANG_ORTH_SZ, bs_lang_orth_chars, - "bua", BUA_LANG_ORTH_SZ, bua_lang_orth_chars, - "byn", BYN_LANG_ORTH_SZ, byn_lang_orth_chars, - "ca", CA_LANG_ORTH_SZ, ca_lang_orth_chars, - "ce", CE_LANG_ORTH_SZ, ce_lang_orth_chars, - "chm", CHM_LANG_ORTH_SZ, chm_lang_orth_chars, - "ch", CH_LANG_ORTH_SZ, ch_lang_orth_chars, - "chr", CHR_LANG_ORTH_SZ, chr_lang_orth_chars, - "co", CO_LANG_ORTH_SZ, co_lang_orth_chars, - "crh", CRH_LANG_ORTH_SZ, crh_lang_orth_chars, - "csb", CSB_LANG_ORTH_SZ, csb_lang_orth_chars, - "cs", CS_LANG_ORTH_SZ, cs_lang_orth_chars, - "cu", CU_LANG_ORTH_SZ, cu_lang_orth_chars, - "cv", CV_LANG_ORTH_SZ, cv_lang_orth_chars, - "cy", CY_LANG_ORTH_SZ, cy_lang_orth_chars, - "da", DA_LANG_ORTH_SZ, da_lang_orth_chars, - "de", DE_LANG_ORTH_SZ, de_lang_orth_chars, - "doi", DOI_LANG_ORTH_SZ, doi_lang_orth_chars, - "dv", DV_LANG_ORTH_SZ, dv_lang_orth_chars, - "dz", DZ_LANG_ORTH_SZ, dz_lang_orth_chars, - "ee", EE_LANG_ORTH_SZ, ee_lang_orth_chars, - "el", EL_LANG_ORTH_SZ, el_lang_orth_chars, - "en", EN_LANG_ORTH_SZ, en_lang_orth_chars, - "eo", EO_LANG_ORTH_SZ, eo_lang_orth_chars, - "es", ES_LANG_ORTH_SZ, es_lang_orth_chars, - "et", ET_LANG_ORTH_SZ, et_lang_orth_chars, - "eu", EU_LANG_ORTH_SZ, eu_lang_orth_chars, - "fa", FA_LANG_ORTH_SZ, fa_lang_orth_chars, - "fat", FAT_LANG_ORTH_SZ, fat_lang_orth_chars, - "ff", FF_LANG_ORTH_SZ, ff_lang_orth_chars, - "fil", FIL_LANG_ORTH_SZ, fil_lang_orth_chars, - "fi", FI_LANG_ORTH_SZ, fi_lang_orth_chars, - "fj", FJ_LANG_ORTH_SZ, fj_lang_orth_chars, - "fo", FO_LANG_ORTH_SZ, fo_lang_orth_chars, - "fr", FR_LANG_ORTH_SZ, fr_lang_orth_chars, - "fur", FUR_LANG_ORTH_SZ, fur_lang_orth_chars, - "fy", FY_LANG_ORTH_SZ, fy_lang_orth_chars, - "ga", GA_LANG_ORTH_SZ, ga_lang_orth_chars, - "gd", GD_LANG_ORTH_SZ, gd_lang_orth_chars, - "gez", GEZ_LANG_ORTH_SZ, gez_lang_orth_chars, - "gl", GL_LANG_ORTH_SZ, gl_lang_orth_chars, - "gn", GN_LANG_ORTH_SZ, gn_lang_orth_chars, - "gu", GU_LANG_ORTH_SZ, gu_lang_orth_chars, - "gv", GV_LANG_ORTH_SZ, gv_lang_orth_chars, - "ha", HA_LANG_ORTH_SZ, ha_lang_orth_chars, - "haw", HAW_LANG_ORTH_SZ, haw_lang_orth_chars, - "he", HE_LANG_ORTH_SZ, he_lang_orth_chars, - "hi", HI_LANG_ORTH_SZ, hi_lang_orth_chars, - "hne", HNE_LANG_ORTH_SZ, hne_lang_orth_chars, - "ho", HO_LANG_ORTH_SZ, ho_lang_orth_chars, - "hr", HR_LANG_ORTH_SZ, hr_lang_orth_chars, - "hsb", HSB_LANG_ORTH_SZ, hsb_lang_orth_chars, - "ht", HT_LANG_ORTH_SZ, ht_lang_orth_chars, - "hu", HU_LANG_ORTH_SZ, hu_lang_orth_chars, - "hy", HY_LANG_ORTH_SZ, hy_lang_orth_chars, - "hz", HZ_LANG_ORTH_SZ, hz_lang_orth_chars, - "ia", IA_LANG_ORTH_SZ, ia_lang_orth_chars, - "id", ID_LANG_ORTH_SZ, id_lang_orth_chars, - "ie", IE_LANG_ORTH_SZ, ie_lang_orth_chars, - "ig", IG_LANG_ORTH_SZ, ig_lang_orth_chars, - "ii", II_LANG_ORTH_SZ, ii_lang_orth_chars, - "ik", IK_LANG_ORTH_SZ, ik_lang_orth_chars, - "io", IO_LANG_ORTH_SZ, io_lang_orth_chars, - "is", IS_LANG_ORTH_SZ, is_lang_orth_chars, - "it", IT_LANG_ORTH_SZ, it_lang_orth_chars, - "iu", IU_LANG_ORTH_SZ, iu_lang_orth_chars, - "ja", JA_LANG_ORTH_SZ, ja_lang_orth_chars, - "jv", JV_LANG_ORTH_SZ, jv_lang_orth_chars, - "kaa", KAA_LANG_ORTH_SZ, kaa_lang_orth_chars, - "kab", KAB_LANG_ORTH_SZ, kab_lang_orth_chars, - "ka", KA_LANG_ORTH_SZ, ka_lang_orth_chars, - "ki", KI_LANG_ORTH_SZ, ki_lang_orth_chars, - "kj", KJ_LANG_ORTH_SZ, kj_lang_orth_chars, - "kk", KK_LANG_ORTH_SZ, kk_lang_orth_chars, - "kl", KL_LANG_ORTH_SZ, kl_lang_orth_chars, - "km", KM_LANG_ORTH_SZ, km_lang_orth_chars, - "kn", KN_LANG_ORTH_SZ, kn_lang_orth_chars, - "kok", KOK_LANG_ORTH_SZ, kok_lang_orth_chars, - "ko", KO_LANG_ORTH_SZ, ko_lang_orth_chars, - "kr", KR_LANG_ORTH_SZ, kr_lang_orth_chars, - "ks", KS_LANG_ORTH_SZ, ks_lang_orth_chars, - "ku_am", KU_AM_LANG_ORTH_SZ, ku_am_lang_orth_chars, - "ku_iq", KU_IQ_LANG_ORTH_SZ, ku_iq_lang_orth_chars, - "ku_ir", KU_IR_LANG_ORTH_SZ, ku_ir_lang_orth_chars, - "kum", KUM_LANG_ORTH_SZ, kum_lang_orth_chars, - "ku_tr", KU_TR_LANG_ORTH_SZ, ku_tr_lang_orth_chars, - "kv", KV_LANG_ORTH_SZ, kv_lang_orth_chars, - "kwm", KWM_LANG_ORTH_SZ, kwm_lang_orth_chars, - "kw", KW_LANG_ORTH_SZ, kw_lang_orth_chars, - "ky", KY_LANG_ORTH_SZ, ky_lang_orth_chars, - "lah", LAH_LANG_ORTH_SZ, lah_lang_orth_chars, - "la", LA_LANG_ORTH_SZ, la_lang_orth_chars, - "lb", LB_LANG_ORTH_SZ, lb_lang_orth_chars, - "lez", LEZ_LANG_ORTH_SZ, lez_lang_orth_chars, - "lg", LG_LANG_ORTH_SZ, lg_lang_orth_chars, - "li", LI_LANG_ORTH_SZ, li_lang_orth_chars, - "ln", LN_LANG_ORTH_SZ, ln_lang_orth_chars, - "lo", LO_LANG_ORTH_SZ, lo_lang_orth_chars, - "lt", LT_LANG_ORTH_SZ, lt_lang_orth_chars, - "lv", LV_LANG_ORTH_SZ, lv_lang_orth_chars, - "mai", MAI_LANG_ORTH_SZ, mai_lang_orth_chars, - "mg", MG_LANG_ORTH_SZ, mg_lang_orth_chars, - "mh", MH_LANG_ORTH_SZ, mh_lang_orth_chars, - "mi", MI_LANG_ORTH_SZ, mi_lang_orth_chars, - "mk", MK_LANG_ORTH_SZ, mk_lang_orth_chars, - "ml", ML_LANG_ORTH_SZ, ml_lang_orth_chars, - "mn_cn", MN_CN_LANG_ORTH_SZ, mn_cn_lang_orth_chars, - "mni", MNI_LANG_ORTH_SZ, mni_lang_orth_chars, - "mn_mn", MN_MN_LANG_ORTH_SZ, mn_mn_lang_orth_chars, - "mo", MO_LANG_ORTH_SZ, mo_lang_orth_chars, - "mr", MR_LANG_ORTH_SZ, mr_lang_orth_chars, - "ms", MS_LANG_ORTH_SZ, ms_lang_orth_chars, - "mt", MT_LANG_ORTH_SZ, mt_lang_orth_chars, - "my", MY_LANG_ORTH_SZ, my_lang_orth_chars, - "na", NA_LANG_ORTH_SZ, na_lang_orth_chars, - "nb", NB_LANG_ORTH_SZ, nb_lang_orth_chars, - "nds", NDS_LANG_ORTH_SZ, nds_lang_orth_chars, - "ne", NE_LANG_ORTH_SZ, ne_lang_orth_chars, - "ng", NG_LANG_ORTH_SZ, ng_lang_orth_chars, - "nl", NL_LANG_ORTH_SZ, nl_lang_orth_chars, - "nn", NN_LANG_ORTH_SZ, nn_lang_orth_chars, - "no", NO_LANG_ORTH_SZ, no_lang_orth_chars, - "nqo", NQO_LANG_ORTH_SZ, nqo_lang_orth_chars, - "nr", NR_LANG_ORTH_SZ, nr_lang_orth_chars, - "nso", NSO_LANG_ORTH_SZ, nso_lang_orth_chars, - "nv", NV_LANG_ORTH_SZ, nv_lang_orth_chars, - "ny", NY_LANG_ORTH_SZ, ny_lang_orth_chars, - "oc", OC_LANG_ORTH_SZ, oc_lang_orth_chars, - "om", OM_LANG_ORTH_SZ, om_lang_orth_chars, - "or", OR_LANG_ORTH_SZ, or_lang_orth_chars, - "os", OS_LANG_ORTH_SZ, os_lang_orth_chars, - "ota", OTA_LANG_ORTH_SZ, ota_lang_orth_chars, - "pa", PA_LANG_ORTH_SZ, pa_lang_orth_chars, - "pap_an", PAP_AN_LANG_ORTH_SZ, pap_an_lang_orth_chars, - "pap_aw", PAP_AW_LANG_ORTH_SZ, pap_aw_lang_orth_chars, - "pa_pk", PA_PK_LANG_ORTH_SZ, pa_pk_lang_orth_chars, - "pl", PL_LANG_ORTH_SZ, pl_lang_orth_chars, - "ps_af", PS_AF_LANG_ORTH_SZ, ps_af_lang_orth_chars, - "ps_pk", PS_PK_LANG_ORTH_SZ, ps_pk_lang_orth_chars, - "pt", PT_LANG_ORTH_SZ, pt_lang_orth_chars, - "qu", QU_LANG_ORTH_SZ, qu_lang_orth_chars, - "quz", QUZ_LANG_ORTH_SZ, quz_lang_orth_chars, - "rm", RM_LANG_ORTH_SZ, rm_lang_orth_chars, - "rn", RN_LANG_ORTH_SZ, rn_lang_orth_chars, - "ro", RO_LANG_ORTH_SZ, ro_lang_orth_chars, - "ru", RU_LANG_ORTH_SZ, ru_lang_orth_chars, - "rw", RW_LANG_ORTH_SZ, rw_lang_orth_chars, - "sah", SAH_LANG_ORTH_SZ, sah_lang_orth_chars, - "sa", SA_LANG_ORTH_SZ, sa_lang_orth_chars, - "sat", SAT_LANG_ORTH_SZ, sat_lang_orth_chars, - "sco", SCO_LANG_ORTH_SZ, sco_lang_orth_chars, - "sc", SC_LANG_ORTH_SZ, sc_lang_orth_chars, - "sd", SD_LANG_ORTH_SZ, sd_lang_orth_chars, - "sel", SEL_LANG_ORTH_SZ, sel_lang_orth_chars, - "se", SE_LANG_ORTH_SZ, se_lang_orth_chars, - "sg", SG_LANG_ORTH_SZ, sg_lang_orth_chars, - "sh", SH_LANG_ORTH_SZ, sh_lang_orth_chars, - "shs", SHS_LANG_ORTH_SZ, shs_lang_orth_chars, - "sid", SID_LANG_ORTH_SZ, sid_lang_orth_chars, - "si", SI_LANG_ORTH_SZ, si_lang_orth_chars, - "sk", SK_LANG_ORTH_SZ, sk_lang_orth_chars, - "sl", SL_LANG_ORTH_SZ, sl_lang_orth_chars, - "sma", SMA_LANG_ORTH_SZ, sma_lang_orth_chars, - "smj", SMJ_LANG_ORTH_SZ, smj_lang_orth_chars, - "smn", SMN_LANG_ORTH_SZ, smn_lang_orth_chars, - "sm", SM_LANG_ORTH_SZ, sm_lang_orth_chars, - "sms", SMS_LANG_ORTH_SZ, sms_lang_orth_chars, - "sn", SN_LANG_ORTH_SZ, sn_lang_orth_chars, - "so", SO_LANG_ORTH_SZ, so_lang_orth_chars, - "sq", SQ_LANG_ORTH_SZ, sq_lang_orth_chars, - "sr", SR_LANG_ORTH_SZ, sr_lang_orth_chars, - "ss", SS_LANG_ORTH_SZ, ss_lang_orth_chars, - "st", ST_LANG_ORTH_SZ, st_lang_orth_chars, - "su", SU_LANG_ORTH_SZ, su_lang_orth_chars, - "sv", SV_LANG_ORTH_SZ, sv_lang_orth_chars, - "sw", SW_LANG_ORTH_SZ, sw_lang_orth_chars, - "syr", SYR_LANG_ORTH_SZ, syr_lang_orth_chars, - "ta", TA_LANG_ORTH_SZ, ta_lang_orth_chars, - "te", TE_LANG_ORTH_SZ, te_lang_orth_chars, - "tg", TG_LANG_ORTH_SZ, tg_lang_orth_chars, - "th", TH_LANG_ORTH_SZ, th_lang_orth_chars, - "ti_er", TI_ER_LANG_ORTH_SZ, ti_er_lang_orth_chars, - "ti_et", TI_ET_LANG_ORTH_SZ, ti_et_lang_orth_chars, - "tig", TIG_LANG_ORTH_SZ, tig_lang_orth_chars, - "tk", TK_LANG_ORTH_SZ, tk_lang_orth_chars, - "tl", TL_LANG_ORTH_SZ, tl_lang_orth_chars, - "tn", TN_LANG_ORTH_SZ, tn_lang_orth_chars, - "to", TO_LANG_ORTH_SZ, to_lang_orth_chars, - "tr", TR_LANG_ORTH_SZ, tr_lang_orth_chars, - "ts", TS_LANG_ORTH_SZ, ts_lang_orth_chars, - "tt", TT_LANG_ORTH_SZ, tt_lang_orth_chars, - "tw", TW_LANG_ORTH_SZ, tw_lang_orth_chars, - "ty", TY_LANG_ORTH_SZ, ty_lang_orth_chars, - "tyv", TYV_LANG_ORTH_SZ, tyv_lang_orth_chars, - "ug", UG_LANG_ORTH_SZ, ug_lang_orth_chars, - "uk", UK_LANG_ORTH_SZ, uk_lang_orth_chars, - "und_zmth", UND_ZMTH_LANG_ORTH_SZ, und_zmth_lang_orth_chars, - "und_zsye", UND_ZSYE_LANG_ORTH_SZ, und_zsye_lang_orth_chars, - "ur", UR_LANG_ORTH_SZ, ur_lang_orth_chars, - "uz", UZ_LANG_ORTH_SZ, uz_lang_orth_chars, - "ve", VE_LANG_ORTH_SZ, ve_lang_orth_chars, - "vi", VI_LANG_ORTH_SZ, vi_lang_orth_chars, - "vo", VO_LANG_ORTH_SZ, vo_lang_orth_chars, - "vot", VOT_LANG_ORTH_SZ, vot_lang_orth_chars, - "wal", WAL_LANG_ORTH_SZ, wal_lang_orth_chars, - "wa", WA_LANG_ORTH_SZ, wa_lang_orth_chars, - "wen", WEN_LANG_ORTH_SZ, wen_lang_orth_chars, - "wo", WO_LANG_ORTH_SZ, wo_lang_orth_chars, - "xh", XH_LANG_ORTH_SZ, xh_lang_orth_chars, - "yap", YAP_LANG_ORTH_SZ, yap_lang_orth_chars, - "yi", YI_LANG_ORTH_SZ, yi_lang_orth_chars, - "yo", YO_LANG_ORTH_SZ, yo_lang_orth_chars, - "za", ZA_LANG_ORTH_SZ, za_lang_orth_chars, - "zh_cn", ZH_CN_LANG_ORTH_SZ, zh_cn_lang_orth_chars, - "zh_hk", ZH_HK_LANG_ORTH_SZ, zh_hk_lang_orth_chars, - "zh_mo", ZH_MO_LANG_ORTH_SZ, zh_mo_lang_orth_chars, - "zh_sg", ZH_SG_LANG_ORTH_SZ, zh_sg_lang_orth_chars, - "zh_tw", ZH_TW_LANG_ORTH_SZ, zh_tw_lang_orth_chars, - "zu", ZU_LANG_ORTH_SZ, zu_lang_orth_chars, -}; -unsigned int fc_lang_cat_sz = 246; diff --git a/fc-lang_conv/files/ff_orth.c b/fc-lang_conv/files/ff_orth.c index 4a83272..529e4a8 100644 --- a/fc-lang_conv/files/ff_orth.c +++ b/fc-lang_conv/files/ff_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ff_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fi_orth.c b/fc-lang_conv/files/fi_orth.c index 664a7ef..702f9f2 100644 --- a/fc-lang_conv/files/fi_orth.c +++ b/fc-lang_conv/files/fi_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fi_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fil_orth.c b/fc-lang_conv/files/fil_orth.c index 1bd84a2..7fa8db6 100644 --- a/fc-lang_conv/files/fil_orth.c +++ b/fc-lang_conv/files/fil_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fil_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fj_orth.c b/fc-lang_conv/files/fj_orth.c index fd71263..9a55fc6 100644 --- a/fc-lang_conv/files/fj_orth.c +++ b/fc-lang_conv/files/fj_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fj_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fo_orth.c b/fc-lang_conv/files/fo_orth.c index 549e547..34e3bd1 100644 --- a/fc-lang_conv/files/fo_orth.c +++ b/fc-lang_conv/files/fo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fo_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fr_orth.c b/fc-lang_conv/files/fr_orth.c index 4210cf0..3a9fc0c 100644 --- a/fc-lang_conv/files/fr_orth.c +++ b/fc-lang_conv/files/fr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fr_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fur_orth.c b/fc-lang_conv/files/fur_orth.c index 4defc9f..1c78461 100644 --- a/fc-lang_conv/files/fur_orth.c +++ b/fc-lang_conv/files/fur_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fur_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/fy_orth.c b/fc-lang_conv/files/fy_orth.c index 85a0a46..7ca60aa 100644 --- a/fc-lang_conv/files/fy_orth.c +++ b/fc-lang_conv/files/fy_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int fy_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ga_orth.c b/fc-lang_conv/files/ga_orth.c index 96c8bc2..7e2b844 100644 --- a/fc-lang_conv/files/ga_orth.c +++ b/fc-lang_conv/files/ga_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ga_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/gd_orth.c b/fc-lang_conv/files/gd_orth.c index fe806f8..536f9f1 100644 --- a/fc-lang_conv/files/gd_orth.c +++ b/fc-lang_conv/files/gd_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int gd_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/gez_orth.c b/fc-lang_conv/files/gez_orth.c index 39443fb..4fbe0f7 100644 --- a/fc-lang_conv/files/gez_orth.c +++ b/fc-lang_conv/files/gez_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int gez_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/gl_orth.c b/fc-lang_conv/files/gl_orth.c index 156af75..7132f5c 100644 --- a/fc-lang_conv/files/gl_orth.c +++ b/fc-lang_conv/files/gl_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int gl_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/gn_orth.c b/fc-lang_conv/files/gn_orth.c index f03f3ac..31be19f 100644 --- a/fc-lang_conv/files/gn_orth.c +++ b/fc-lang_conv/files/gn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int gn_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/gu_orth.c b/fc-lang_conv/files/gu_orth.c index dc56bd6..0c4ceef 100644 --- a/fc-lang_conv/files/gu_orth.c +++ b/fc-lang_conv/files/gu_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int gu_lang_orth_chars[] = { 0xf0f0ffff, 0x0a81, 0x0a83, // range diff --git a/fc-lang_conv/files/gv_orth.c b/fc-lang_conv/files/gv_orth.c index fe2bee7..7a8f951 100644 --- a/fc-lang_conv/files/gv_orth.c +++ b/fc-lang_conv/files/gv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int gv_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ha_orth.c b/fc-lang_conv/files/ha_orth.c index c6afe9a..26e4aa2 100644 --- a/fc-lang_conv/files/ha_orth.c +++ b/fc-lang_conv/files/ha_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ha_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/haw_orth.c b/fc-lang_conv/files/haw_orth.c index 84c69fb..bb14190 100644 --- a/fc-lang_conv/files/haw_orth.c +++ b/fc-lang_conv/files/haw_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int haw_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/he_orth.c b/fc-lang_conv/files/he_orth.c index 54adaea..9811ae1 100644 --- a/fc-lang_conv/files/he_orth.c +++ b/fc-lang_conv/files/he_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int he_lang_orth_chars[] = { 0xf0f0ffff, 0x05d0, 0x05ea, // range diff --git a/fc-lang_conv/files/hi_orth.c b/fc-lang_conv/files/hi_orth.c index 620ee4e..ac72ee6 100644 --- a/fc-lang_conv/files/hi_orth.c +++ b/fc-lang_conv/files/hi_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int hi_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/hne_orth.c b/fc-lang_conv/files/hne_orth.c index be100f2..0161676 100644 --- a/fc-lang_conv/files/hne_orth.c +++ b/fc-lang_conv/files/hne_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int hne_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/ho_orth.c b/fc-lang_conv/files/ho_orth.c index e4760ca..eb02672 100644 --- a/fc-lang_conv/files/ho_orth.c +++ b/fc-lang_conv/files/ho_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ho_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/hr_orth.c b/fc-lang_conv/files/hr_orth.c index cd65a22..f0cdf2f 100644 --- a/fc-lang_conv/files/hr_orth.c +++ b/fc-lang_conv/files/hr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int hr_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/hsb_orth.c b/fc-lang_conv/files/hsb_orth.c index 302bd16..9ced5c3 100644 --- a/fc-lang_conv/files/hsb_orth.c +++ b/fc-lang_conv/files/hsb_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int hsb_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ht_orth.c b/fc-lang_conv/files/ht_orth.c index 6329e53..d20e300 100644 --- a/fc-lang_conv/files/ht_orth.c +++ b/fc-lang_conv/files/ht_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ht_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/hu_orth.c b/fc-lang_conv/files/hu_orth.c index 74bf57b..f80e3b4 100644 --- a/fc-lang_conv/files/hu_orth.c +++ b/fc-lang_conv/files/hu_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int hu_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/hy_orth.c b/fc-lang_conv/files/hy_orth.c index ca19438..6ef3cae 100644 --- a/fc-lang_conv/files/hy_orth.c +++ b/fc-lang_conv/files/hy_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int hy_lang_orth_chars[] = { 0xf0f0ffff, 0x0531, 0x0556, // range diff --git a/fc-lang_conv/files/hz_orth.c b/fc-lang_conv/files/hz_orth.c index d0deefe..1520a0a 100644 --- a/fc-lang_conv/files/hz_orth.c +++ b/fc-lang_conv/files/hz_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int hz_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ia_orth.c b/fc-lang_conv/files/ia_orth.c index e461f79..0fd0cdd 100644 --- a/fc-lang_conv/files/ia_orth.c +++ b/fc-lang_conv/files/ia_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ia_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/id_orth.c b/fc-lang_conv/files/id_orth.c index 00ed0bb..5288783 100644 --- a/fc-lang_conv/files/id_orth.c +++ b/fc-lang_conv/files/id_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int id_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ie_orth.c b/fc-lang_conv/files/ie_orth.c index eadc91c..05a082e 100644 --- a/fc-lang_conv/files/ie_orth.c +++ b/fc-lang_conv/files/ie_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ie_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ig_orth.c b/fc-lang_conv/files/ig_orth.c index 2e1c0dd..1f1c436 100644 --- a/fc-lang_conv/files/ig_orth.c +++ b/fc-lang_conv/files/ig_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ig_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ii_orth.c b/fc-lang_conv/files/ii_orth.c index c13bf13..0d6bd36 100644 --- a/fc-lang_conv/files/ii_orth.c +++ b/fc-lang_conv/files/ii_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ii_lang_orth_chars[] = { 0xf0f0ffff, 0xa000, 0xa48c, // range diff --git a/fc-lang_conv/files/ik_orth.c b/fc-lang_conv/files/ik_orth.c index adfba13..79a08a8 100644 --- a/fc-lang_conv/files/ik_orth.c +++ b/fc-lang_conv/files/ik_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ik_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/io_orth.c b/fc-lang_conv/files/io_orth.c index 5c00617..326b10e 100644 --- a/fc-lang_conv/files/io_orth.c +++ b/fc-lang_conv/files/io_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int io_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/is_orth.c b/fc-lang_conv/files/is_orth.c index f02e9d6..b447a59 100644 --- a/fc-lang_conv/files/is_orth.c +++ b/fc-lang_conv/files/is_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int is_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/it_orth.c b/fc-lang_conv/files/it_orth.c index d3efbea..d39c772 100644 --- a/fc-lang_conv/files/it_orth.c +++ b/fc-lang_conv/files/it_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int it_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/iu_orth.c b/fc-lang_conv/files/iu_orth.c index 88419ac..79569c5 100644 --- a/fc-lang_conv/files/iu_orth.c +++ b/fc-lang_conv/files/iu_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int iu_lang_orth_chars[] = { 0xf0f0ffff, 0x1401, 0x1406, // range diff --git a/fc-lang_conv/files/ja_orth.c b/fc-lang_conv/files/ja_orth.c index 97f89cf..57390ef 100644 --- a/fc-lang_conv/files/ja_orth.c +++ b/fc-lang_conv/files/ja_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ja_lang_orth_chars[] = { 0x3000, diff --git a/fc-lang_conv/files/jv_orth.c b/fc-lang_conv/files/jv_orth.c index 6574cba..31c5ad3 100644 --- a/fc-lang_conv/files/jv_orth.c +++ b/fc-lang_conv/files/jv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int jv_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ka_orth.c b/fc-lang_conv/files/ka_orth.c index c2a20e6..1618c07 100644 --- a/fc-lang_conv/files/ka_orth.c +++ b/fc-lang_conv/files/ka_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ka_lang_orth_chars[] = { 0xf0f0ffff, 0x10d0, 0x10f0, // range diff --git a/fc-lang_conv/files/kaa_orth.c b/fc-lang_conv/files/kaa_orth.c index 6920beb..f992358 100644 --- a/fc-lang_conv/files/kaa_orth.c +++ b/fc-lang_conv/files/kaa_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kaa_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/kab_orth.c b/fc-lang_conv/files/kab_orth.c index 79a9845..2fec5ee 100644 --- a/fc-lang_conv/files/kab_orth.c +++ b/fc-lang_conv/files/kab_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kab_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ki_orth.c b/fc-lang_conv/files/ki_orth.c index f3e131f..d39b254 100644 --- a/fc-lang_conv/files/ki_orth.c +++ b/fc-lang_conv/files/ki_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ki_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/kj_orth.c b/fc-lang_conv/files/kj_orth.c index 81ad0a8..b69fd51 100644 --- a/fc-lang_conv/files/kj_orth.c +++ b/fc-lang_conv/files/kj_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kj_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/kk_orth.c b/fc-lang_conv/files/kk_orth.c index f6c8a5b..a51e36b 100644 --- a/fc-lang_conv/files/kk_orth.c +++ b/fc-lang_conv/files/kk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kk_lang_orth_chars[] = { 0xf0f0ffff, 0x0410, 0x044f, // range diff --git a/fc-lang_conv/files/kl_orth.c b/fc-lang_conv/files/kl_orth.c index cfd3938..6e15945 100644 --- a/fc-lang_conv/files/kl_orth.c +++ b/fc-lang_conv/files/kl_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kl_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/km_orth.c b/fc-lang_conv/files/km_orth.c index 800e77c..ae8d46c 100644 --- a/fc-lang_conv/files/km_orth.c +++ b/fc-lang_conv/files/km_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int km_lang_orth_chars[] = { 0xf0f0ffff, 0x1780, 0x179c, // range diff --git a/fc-lang_conv/files/kn_orth.c b/fc-lang_conv/files/kn_orth.c index dadf788..f82c0b0 100644 --- a/fc-lang_conv/files/kn_orth.c +++ b/fc-lang_conv/files/kn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kn_lang_orth_chars[] = { 0xf0f0ffff, 0x0c82, 0x0c83, // range diff --git a/fc-lang_conv/files/ko_orth.c b/fc-lang_conv/files/ko_orth.c index e33ce60..ae95307 100644 --- a/fc-lang_conv/files/ko_orth.c +++ b/fc-lang_conv/files/ko_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ko_lang_orth_chars[] = { 0x3131, diff --git a/fc-lang_conv/files/kok_orth.c b/fc-lang_conv/files/kok_orth.c index e60b5bc..6f26853 100644 --- a/fc-lang_conv/files/kok_orth.c +++ b/fc-lang_conv/files/kok_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kok_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/kr_orth.c b/fc-lang_conv/files/kr_orth.c index d3a2456..00d3799 100644 --- a/fc-lang_conv/files/kr_orth.c +++ b/fc-lang_conv/files/kr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kr_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ks_orth.c b/fc-lang_conv/files/ks_orth.c index 7dcd84f..8d0088e 100644 --- a/fc-lang_conv/files/ks_orth.c +++ b/fc-lang_conv/files/ks_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ks_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/ku_am_orth.c b/fc-lang_conv/files/ku_am_orth.c index c33e9fd..ff510db 100644 --- a/fc-lang_conv/files/ku_am_orth.c +++ b/fc-lang_conv/files/ku_am_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ku_am_lang_orth_chars[] = { 0x0410, diff --git a/fc-lang_conv/files/ku_iq_orth.c b/fc-lang_conv/files/ku_iq_orth.c index 0d8a648..eb59a0a 100644 --- a/fc-lang_conv/files/ku_iq_orth.c +++ b/fc-lang_conv/files/ku_iq_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ku_iq_lang_orth_chars[] = { 0xf0f0ffff, 0x0626, 0x0628, // range diff --git a/fc-lang_conv/files/ku_ir_orth.c b/fc-lang_conv/files/ku_ir_orth.c index 722f2ea..5c66894 100644 --- a/fc-lang_conv/files/ku_ir_orth.c +++ b/fc-lang_conv/files/ku_ir_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ku_ir_lang_orth_chars[] = { 0xf0f0ffff, 0x0626, 0x0628, // range diff --git a/fc-lang_conv/files/ku_tr_orth.c b/fc-lang_conv/files/ku_tr_orth.c index 09428d6..ca9912f 100644 --- a/fc-lang_conv/files/ku_tr_orth.c +++ b/fc-lang_conv/files/ku_tr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ku_tr_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/kum_orth.c b/fc-lang_conv/files/kum_orth.c index 13c871a..073dd9f 100644 --- a/fc-lang_conv/files/kum_orth.c +++ b/fc-lang_conv/files/kum_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kum_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/kv_orth.c b/fc-lang_conv/files/kv_orth.c index e724b1e..33c8ece 100644 --- a/fc-lang_conv/files/kv_orth.c +++ b/fc-lang_conv/files/kv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kv_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/kw_orth.c b/fc-lang_conv/files/kw_orth.c index 9dbf469..d0fc2f2 100644 --- a/fc-lang_conv/files/kw_orth.c +++ b/fc-lang_conv/files/kw_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kw_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/kwm_orth.c b/fc-lang_conv/files/kwm_orth.c index d15fce0..fa7f9e1 100644 --- a/fc-lang_conv/files/kwm_orth.c +++ b/fc-lang_conv/files/kwm_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int kwm_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ky_orth.c b/fc-lang_conv/files/ky_orth.c index 33dea57..0d3f3a5 100644 --- a/fc-lang_conv/files/ky_orth.c +++ b/fc-lang_conv/files/ky_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ky_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/la_orth.c b/fc-lang_conv/files/la_orth.c index 28aea3c..f8aa9a0 100644 --- a/fc-lang_conv/files/la_orth.c +++ b/fc-lang_conv/files/la_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int la_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/lah_orth.c b/fc-lang_conv/files/lah_orth.c index c02379e..72e51e6 100644 --- a/fc-lang_conv/files/lah_orth.c +++ b/fc-lang_conv/files/lah_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int lah_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/lb_orth.c b/fc-lang_conv/files/lb_orth.c index 6d842ab..e5b1850 100644 --- a/fc-lang_conv/files/lb_orth.c +++ b/fc-lang_conv/files/lb_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int lb_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/lez_orth.c b/fc-lang_conv/files/lez_orth.c index 9515b13..94832ad 100644 --- a/fc-lang_conv/files/lez_orth.c +++ b/fc-lang_conv/files/lez_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int lez_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/lg_orth.c b/fc-lang_conv/files/lg_orth.c index 1bb383a..7cccb2a 100644 --- a/fc-lang_conv/files/lg_orth.c +++ b/fc-lang_conv/files/lg_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int lg_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/li_orth.c b/fc-lang_conv/files/li_orth.c index a93409c..c7bef89 100644 --- a/fc-lang_conv/files/li_orth.c +++ b/fc-lang_conv/files/li_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int li_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ln_orth.c b/fc-lang_conv/files/ln_orth.c index 8d7cbdc..8536a60 100644 --- a/fc-lang_conv/files/ln_orth.c +++ b/fc-lang_conv/files/ln_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ln_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/lo_orth.c b/fc-lang_conv/files/lo_orth.c index a89bb23..74bd19c 100644 --- a/fc-lang_conv/files/lo_orth.c +++ b/fc-lang_conv/files/lo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int lo_lang_orth_chars[] = { 0xf0f0ffff, 0x0e81, 0x0e82, // range diff --git a/fc-lang_conv/files/lt_orth.c b/fc-lang_conv/files/lt_orth.c index a3ffcb9..65b7634 100644 --- a/fc-lang_conv/files/lt_orth.c +++ b/fc-lang_conv/files/lt_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int lt_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/lv_orth.c b/fc-lang_conv/files/lv_orth.c index 5b61534..4e328b2 100644 --- a/fc-lang_conv/files/lv_orth.c +++ b/fc-lang_conv/files/lv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int lv_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/mai_orth.c b/fc-lang_conv/files/mai_orth.c index 0d119cc..e9f237f 100644 --- a/fc-lang_conv/files/mai_orth.c +++ b/fc-lang_conv/files/mai_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mai_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/mg_orth.c b/fc-lang_conv/files/mg_orth.c index 3323f52..7d86eae 100644 --- a/fc-lang_conv/files/mg_orth.c +++ b/fc-lang_conv/files/mg_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mg_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/mh_orth.c b/fc-lang_conv/files/mh_orth.c index 741e7d1..097d6e5 100644 --- a/fc-lang_conv/files/mh_orth.c +++ b/fc-lang_conv/files/mh_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mh_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/mi_orth.c b/fc-lang_conv/files/mi_orth.c index 23ceec6..a5d9a31 100644 --- a/fc-lang_conv/files/mi_orth.c +++ b/fc-lang_conv/files/mi_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mi_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/mk_orth.c b/fc-lang_conv/files/mk_orth.c index daa6d74..2a452ae 100644 --- a/fc-lang_conv/files/mk_orth.c +++ b/fc-lang_conv/files/mk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mk_lang_orth_chars[] = { 0x0400, diff --git a/fc-lang_conv/files/ml_orth.c b/fc-lang_conv/files/ml_orth.c index 404ce6a..7dcbc25 100644 --- a/fc-lang_conv/files/ml_orth.c +++ b/fc-lang_conv/files/ml_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ml_lang_orth_chars[] = { 0xf0f0ffff, 0x0d02, 0x0d03, // range diff --git a/fc-lang_conv/files/mn_cn_orth.c b/fc-lang_conv/files/mn_cn_orth.c index 656d0da..dc5138e 100644 --- a/fc-lang_conv/files/mn_cn_orth.c +++ b/fc-lang_conv/files/mn_cn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mn_cn_lang_orth_chars[] = { 0xf0f0ffff, 0x1820, 0x1842, // range diff --git a/fc-lang_conv/files/mn_mn_orth.c b/fc-lang_conv/files/mn_mn_orth.c index 09bb958..48cc440 100644 --- a/fc-lang_conv/files/mn_mn_orth.c +++ b/fc-lang_conv/files/mn_mn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mn_mn_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/mni_orth.c b/fc-lang_conv/files/mni_orth.c index 3a7303e..bebb036 100644 --- a/fc-lang_conv/files/mni_orth.c +++ b/fc-lang_conv/files/mni_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mni_lang_orth_chars[] = { 0xf0f0ffff, 0x0981, 0x0983, // range @@ -18,10 +18,10 @@ const unsigned int mni_lang_orth_chars[] = { 0xf0f0ffff, 0x09cb, 0x09cd, // range 0xf0f0ffff, 0x09dc, 0x09dd, // range 0x09df, - 0x0964, + 0xf0f0ffff, 0x0964, 0x09c4, // range 0x09bd, 0x09ce, 0xf0f0ffff, 0x09e6, 0x09ef, // range 0x09f1, }; -#define MNI_LANG_ORTH_SZ 40 +#define MNI_LANG_ORTH_SZ 42 diff --git a/fc-lang_conv/files/mo_orth.c b/fc-lang_conv/files/mo_orth.c index 8f3af41..c77dba6 100644 --- a/fc-lang_conv/files/mo_orth.c +++ b/fc-lang_conv/files/mo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mo_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/mr_orth.c b/fc-lang_conv/files/mr_orth.c index 5e0c0f9..37f0393 100644 --- a/fc-lang_conv/files/mr_orth.c +++ b/fc-lang_conv/files/mr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mr_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/ms_orth.c b/fc-lang_conv/files/ms_orth.c index 2f0d3db..abe257a 100644 --- a/fc-lang_conv/files/ms_orth.c +++ b/fc-lang_conv/files/ms_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ms_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/mt_orth.c b/fc-lang_conv/files/mt_orth.c index 7425d47..56b3b3c 100644 --- a/fc-lang_conv/files/mt_orth.c +++ b/fc-lang_conv/files/mt_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int mt_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/my_orth.c b/fc-lang_conv/files/my_orth.c index 6325fa4..604efc4 100644 --- a/fc-lang_conv/files/my_orth.c +++ b/fc-lang_conv/files/my_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int my_lang_orth_chars[] = { 0xf0f0ffff, 0x1000, 0x1020, // range diff --git a/fc-lang_conv/files/na_orth.c b/fc-lang_conv/files/na_orth.c index 6807c37..af9ed01 100644 --- a/fc-lang_conv/files/na_orth.c +++ b/fc-lang_conv/files/na_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int na_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/nb_orth.c b/fc-lang_conv/files/nb_orth.c index 7c7352c..f56efc3 100644 --- a/fc-lang_conv/files/nb_orth.c +++ b/fc-lang_conv/files/nb_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nb_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/nds_orth.c b/fc-lang_conv/files/nds_orth.c index 8b27147..074f777 100644 --- a/fc-lang_conv/files/nds_orth.c +++ b/fc-lang_conv/files/nds_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nds_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ne_orth.c b/fc-lang_conv/files/ne_orth.c index 360d14b..138b2fa 100644 --- a/fc-lang_conv/files/ne_orth.c +++ b/fc-lang_conv/files/ne_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ne_lang_orth_chars[] = { 0xf0f0ffff, 0x0901, 0x0903, // range diff --git a/fc-lang_conv/files/ng_orth.c b/fc-lang_conv/files/ng_orth.c index 9378d9b..2c79c38 100644 --- a/fc-lang_conv/files/ng_orth.c +++ b/fc-lang_conv/files/ng_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ng_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/nl_orth.c b/fc-lang_conv/files/nl_orth.c index 56f34cd..be35caf 100644 --- a/fc-lang_conv/files/nl_orth.c +++ b/fc-lang_conv/files/nl_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nl_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/nn_orth.c b/fc-lang_conv/files/nn_orth.c index fc6e6f1..af315e3 100644 --- a/fc-lang_conv/files/nn_orth.c +++ b/fc-lang_conv/files/nn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nn_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/no_orth.c b/fc-lang_conv/files/no_orth.c index af33d3d..db25b8d 100644 --- a/fc-lang_conv/files/no_orth.c +++ b/fc-lang_conv/files/no_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int no_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/nqo_orth.c b/fc-lang_conv/files/nqo_orth.c index 7f64134..22b3eb7 100644 --- a/fc-lang_conv/files/nqo_orth.c +++ b/fc-lang_conv/files/nqo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nqo_lang_orth_chars[] = { 0xf0f0ffff, 0x07c0, 0x07fa, // range diff --git a/fc-lang_conv/files/nr_orth.c b/fc-lang_conv/files/nr_orth.c index f0fe1ca..2ca0c1e 100644 --- a/fc-lang_conv/files/nr_orth.c +++ b/fc-lang_conv/files/nr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nr_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/nso_orth.c b/fc-lang_conv/files/nso_orth.c index 8c94f97..c9320db 100644 --- a/fc-lang_conv/files/nso_orth.c +++ b/fc-lang_conv/files/nso_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nso_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/nv_orth.c b/fc-lang_conv/files/nv_orth.c index 366d9cb..ef8c5d2 100644 --- a/fc-lang_conv/files/nv_orth.c +++ b/fc-lang_conv/files/nv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int nv_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ny_orth.c b/fc-lang_conv/files/ny_orth.c index a7a8876..881ce5a 100644 --- a/fc-lang_conv/files/ny_orth.c +++ b/fc-lang_conv/files/ny_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ny_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/oc_orth.c b/fc-lang_conv/files/oc_orth.c index 8ef2a7d..0af67c0 100644 --- a/fc-lang_conv/files/oc_orth.c +++ b/fc-lang_conv/files/oc_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int oc_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/om_orth.c b/fc-lang_conv/files/om_orth.c index d3764fa..18ad203 100644 --- a/fc-lang_conv/files/om_orth.c +++ b/fc-lang_conv/files/om_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int om_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/or_orth.c b/fc-lang_conv/files/or_orth.c index 888a154..7121993 100644 --- a/fc-lang_conv/files/or_orth.c +++ b/fc-lang_conv/files/or_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int or_lang_orth_chars[] = { 0xf0f0ffff, 0x0b01, 0x0b03, // range diff --git a/fc-lang_conv/files/os_orth.c b/fc-lang_conv/files/os_orth.c index 189dee8..87d43be 100644 --- a/fc-lang_conv/files/os_orth.c +++ b/fc-lang_conv/files/os_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int os_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/ota_orth.c b/fc-lang_conv/files/ota_orth.c index e694455..eb6b486 100644 --- a/fc-lang_conv/files/ota_orth.c +++ b/fc-lang_conv/files/ota_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ota_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0622, // range diff --git a/fc-lang_conv/files/pa_orth.c b/fc-lang_conv/files/pa_orth.c index 61a144a..12dcd99 100644 --- a/fc-lang_conv/files/pa_orth.c +++ b/fc-lang_conv/files/pa_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int pa_lang_orth_chars[] = { 0xf0f0ffff, 0x0a05, 0x0a0a, // range diff --git a/fc-lang_conv/files/pa_pk_orth.c b/fc-lang_conv/files/pa_pk_orth.c index 10b8b4c..2544cd9 100644 --- a/fc-lang_conv/files/pa_pk_orth.c +++ b/fc-lang_conv/files/pa_pk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int pa_pk_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/pap_an_orth.c b/fc-lang_conv/files/pap_an_orth.c index 0e1d466..8733546 100644 --- a/fc-lang_conv/files/pap_an_orth.c +++ b/fc-lang_conv/files/pap_an_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int pap_an_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/pap_aw_orth.c b/fc-lang_conv/files/pap_aw_orth.c index c8574e5..8f359db 100644 --- a/fc-lang_conv/files/pap_aw_orth.c +++ b/fc-lang_conv/files/pap_aw_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int pap_aw_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/pes_orth.c b/fc-lang_conv/files/pes_orth.c index 1f36b6d..ea06f1d 100644 --- a/fc-lang_conv/files/pes_orth.c +++ b/fc-lang_conv/files/pes_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int pes_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/pl_orth.c b/fc-lang_conv/files/pl_orth.c index cb56c03..a03d6ff 100644 --- a/fc-lang_conv/files/pl_orth.c +++ b/fc-lang_conv/files/pl_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int pl_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/prs_orth.c b/fc-lang_conv/files/prs_orth.c index 7483b87..4aff86e 100644 --- a/fc-lang_conv/files/prs_orth.c +++ b/fc-lang_conv/files/prs_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int prs_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/ps_af_orth.c b/fc-lang_conv/files/ps_af_orth.c index 2b1ce5a..3cf544a 100644 --- a/fc-lang_conv/files/ps_af_orth.c +++ b/fc-lang_conv/files/ps_af_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ps_af_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/ps_pk_orth.c b/fc-lang_conv/files/ps_pk_orth.c index 64e300b..1504561 100644 --- a/fc-lang_conv/files/ps_pk_orth.c +++ b/fc-lang_conv/files/ps_pk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ps_pk_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/pt_orth.c b/fc-lang_conv/files/pt_orth.c index 3fa980d..b8de28d 100644 --- a/fc-lang_conv/files/pt_orth.c +++ b/fc-lang_conv/files/pt_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int pt_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/qu_orth.c b/fc-lang_conv/files/qu_orth.c index 8ee62dc..f60dee7 100644 --- a/fc-lang_conv/files/qu_orth.c +++ b/fc-lang_conv/files/qu_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int qu_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/quz_orth.c b/fc-lang_conv/files/quz_orth.c index d49a848..e226686 100644 --- a/fc-lang_conv/files/quz_orth.c +++ b/fc-lang_conv/files/quz_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int quz_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/rm_orth.c b/fc-lang_conv/files/rm_orth.c index 43eb89a..a65361f 100644 --- a/fc-lang_conv/files/rm_orth.c +++ b/fc-lang_conv/files/rm_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int rm_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/rn_orth.c b/fc-lang_conv/files/rn_orth.c index dcc66b5..4094022 100644 --- a/fc-lang_conv/files/rn_orth.c +++ b/fc-lang_conv/files/rn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int rn_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ro_orth.c b/fc-lang_conv/files/ro_orth.c index 117978b..da7b89e 100644 --- a/fc-lang_conv/files/ro_orth.c +++ b/fc-lang_conv/files/ro_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ro_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ru_orth.c b/fc-lang_conv/files/ru_orth.c index 9d73c60..aff7017 100644 --- a/fc-lang_conv/files/ru_orth.c +++ b/fc-lang_conv/files/ru_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ru_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/rw_orth.c b/fc-lang_conv/files/rw_orth.c index cbf5cca..3686114 100644 --- a/fc-lang_conv/files/rw_orth.c +++ b/fc-lang_conv/files/rw_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int rw_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sa_orth.c b/fc-lang_conv/files/sa_orth.c index 596ba66..432f1e6 100644 --- a/fc-lang_conv/files/sa_orth.c +++ b/fc-lang_conv/files/sa_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sa_lang_orth_chars[] = { 0xf0f0ffff, 0x0905, 0x0914, // range diff --git a/fc-lang_conv/files/sah_orth.c b/fc-lang_conv/files/sah_orth.c index a6590d3..79812fd 100644 --- a/fc-lang_conv/files/sah_orth.c +++ b/fc-lang_conv/files/sah_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sah_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/sat_orth.c b/fc-lang_conv/files/sat_orth.c index 3a57b92..b81aa1d 100644 --- a/fc-lang_conv/files/sat_orth.c +++ b/fc-lang_conv/files/sat_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sat_lang_orth_chars[] = { 0xf0f0ffff, 0x0901, 0x0903, // range diff --git a/fc-lang_conv/files/sc_orth.c b/fc-lang_conv/files/sc_orth.c index bf9da84..2da141b 100644 --- a/fc-lang_conv/files/sc_orth.c +++ b/fc-lang_conv/files/sc_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sc_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sco_orth.c b/fc-lang_conv/files/sco_orth.c index cb943da..46d6445 100644 --- a/fc-lang_conv/files/sco_orth.c +++ b/fc-lang_conv/files/sco_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sco_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sd_orth.c b/fc-lang_conv/files/sd_orth.c index b9b26ff..66e5b7b 100644 --- a/fc-lang_conv/files/sd_orth.c +++ b/fc-lang_conv/files/sd_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sd_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0622, // range diff --git a/fc-lang_conv/files/se_orth.c b/fc-lang_conv/files/se_orth.c index 9fdc32b..eb76818 100644 --- a/fc-lang_conv/files/se_orth.c +++ b/fc-lang_conv/files/se_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int se_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sel_orth.c b/fc-lang_conv/files/sel_orth.c index 22e62f2..81948e5 100644 --- a/fc-lang_conv/files/sel_orth.c +++ b/fc-lang_conv/files/sel_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sel_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/sg_orth.c b/fc-lang_conv/files/sg_orth.c index 1f35dfe..e489381 100644 --- a/fc-lang_conv/files/sg_orth.c +++ b/fc-lang_conv/files/sg_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sg_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sh_orth.c b/fc-lang_conv/files/sh_orth.c index 3358eb5..74ce275 100644 --- a/fc-lang_conv/files/sh_orth.c +++ b/fc-lang_conv/files/sh_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sh_lang_orth_chars[] = { 0xf0f0ffff, 0x0410, 0x044f, // range diff --git a/fc-lang_conv/files/shs_orth.c b/fc-lang_conv/files/shs_orth.c index 1a404b0..c22a078 100644 --- a/fc-lang_conv/files/shs_orth.c +++ b/fc-lang_conv/files/shs_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int shs_lang_orth_chars[] = { 0x0037, diff --git a/fc-lang_conv/files/si_orth.c b/fc-lang_conv/files/si_orth.c index 458fa3a..25c57c1 100644 --- a/fc-lang_conv/files/si_orth.c +++ b/fc-lang_conv/files/si_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int si_lang_orth_chars[] = { 0xf0f0ffff, 0x0d82, 0x0d83, // range diff --git a/fc-lang_conv/files/sid_orth.c b/fc-lang_conv/files/sid_orth.c index 6159984..bce8ed4 100644 --- a/fc-lang_conv/files/sid_orth.c +++ b/fc-lang_conv/files/sid_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sid_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/sk_orth.c b/fc-lang_conv/files/sk_orth.c index a1b8c7a..72692ab 100644 --- a/fc-lang_conv/files/sk_orth.c +++ b/fc-lang_conv/files/sk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sk_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sl_orth.c b/fc-lang_conv/files/sl_orth.c index 76b8bb3..6c26a70 100644 --- a/fc-lang_conv/files/sl_orth.c +++ b/fc-lang_conv/files/sl_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sl_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sm_orth.c b/fc-lang_conv/files/sm_orth.c index 17eb387..40dc57a 100644 --- a/fc-lang_conv/files/sm_orth.c +++ b/fc-lang_conv/files/sm_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sm_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sma_orth.c b/fc-lang_conv/files/sma_orth.c index 051724a..d6e0752 100644 --- a/fc-lang_conv/files/sma_orth.c +++ b/fc-lang_conv/files/sma_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sma_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/smj_orth.c b/fc-lang_conv/files/smj_orth.c index b37d8aa..c8fadf0 100644 --- a/fc-lang_conv/files/smj_orth.c +++ b/fc-lang_conv/files/smj_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int smj_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/smn_orth.c b/fc-lang_conv/files/smn_orth.c index 8a0d32f..0853fe5 100644 --- a/fc-lang_conv/files/smn_orth.c +++ b/fc-lang_conv/files/smn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int smn_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sms_orth.c b/fc-lang_conv/files/sms_orth.c index 76e2797..d64d902 100644 --- a/fc-lang_conv/files/sms_orth.c +++ b/fc-lang_conv/files/sms_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sms_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sn_orth.c b/fc-lang_conv/files/sn_orth.c index dbc1a40..87c4790 100644 --- a/fc-lang_conv/files/sn_orth.c +++ b/fc-lang_conv/files/sn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sn_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/so_orth.c b/fc-lang_conv/files/so_orth.c index 42d81e6..e357e00 100644 --- a/fc-lang_conv/files/so_orth.c +++ b/fc-lang_conv/files/so_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int so_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sq_orth.c b/fc-lang_conv/files/sq_orth.c index e1744c6..b672ef2 100644 --- a/fc-lang_conv/files/sq_orth.c +++ b/fc-lang_conv/files/sq_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sq_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sr_orth.c b/fc-lang_conv/files/sr_orth.c index 4a4f63e..f58eae1 100644 --- a/fc-lang_conv/files/sr_orth.c +++ b/fc-lang_conv/files/sr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sr_lang_orth_chars[] = { 0x0402, diff --git a/fc-lang_conv/files/ss_orth.c b/fc-lang_conv/files/ss_orth.c index 5e19ccc..5e58fce 100644 --- a/fc-lang_conv/files/ss_orth.c +++ b/fc-lang_conv/files/ss_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ss_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/st_orth.c b/fc-lang_conv/files/st_orth.c index 81bbcaf..e6f1559 100644 --- a/fc-lang_conv/files/st_orth.c +++ b/fc-lang_conv/files/st_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int st_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/su_orth.c b/fc-lang_conv/files/su_orth.c index 11ac87c..b5a5bfc 100644 --- a/fc-lang_conv/files/su_orth.c +++ b/fc-lang_conv/files/su_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int su_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sv_orth.c b/fc-lang_conv/files/sv_orth.c index 4262bed..1316a1e 100644 --- a/fc-lang_conv/files/sv_orth.c +++ b/fc-lang_conv/files/sv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sv_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/sw_orth.c b/fc-lang_conv/files/sw_orth.c index 7893b5a..5fdf1e4 100644 --- a/fc-lang_conv/files/sw_orth.c +++ b/fc-lang_conv/files/sw_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int sw_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/syr_orth.c b/fc-lang_conv/files/syr_orth.c index 6b2422c..c5850e6 100644 --- a/fc-lang_conv/files/syr_orth.c +++ b/fc-lang_conv/files/syr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int syr_lang_orth_chars[] = { 0xf0f0ffff, 0x0710, 0x072c, // range diff --git a/fc-lang_conv/files/ta_orth.c b/fc-lang_conv/files/ta_orth.c index 891474e..7f6694d 100644 --- a/fc-lang_conv/files/ta_orth.c +++ b/fc-lang_conv/files/ta_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ta_lang_orth_chars[] = { 0x0b83, diff --git a/fc-lang_conv/files/te_orth.c b/fc-lang_conv/files/te_orth.c index bd4d2de..ca00d3b 100644 --- a/fc-lang_conv/files/te_orth.c +++ b/fc-lang_conv/files/te_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int te_lang_orth_chars[] = { 0xf0f0ffff, 0x0c01, 0x0c03, // range diff --git a/fc-lang_conv/files/tg_orth.c b/fc-lang_conv/files/tg_orth.c index 87e1425..740ea44 100644 --- a/fc-lang_conv/files/tg_orth.c +++ b/fc-lang_conv/files/tg_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tg_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/th_orth.c b/fc-lang_conv/files/th_orth.c index a20c521..ebf1846 100644 --- a/fc-lang_conv/files/th_orth.c +++ b/fc-lang_conv/files/th_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int th_lang_orth_chars[] = { 0xf0f0ffff, 0x0e01, 0x0e3a, // range diff --git a/fc-lang_conv/files/ti_er_orth.c b/fc-lang_conv/files/ti_er_orth.c index 186d892..40cc8d3 100644 --- a/fc-lang_conv/files/ti_er_orth.c +++ b/fc-lang_conv/files/ti_er_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ti_er_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/ti_et_orth.c b/fc-lang_conv/files/ti_et_orth.c index 2b85316..0cc3382 100644 --- a/fc-lang_conv/files/ti_et_orth.c +++ b/fc-lang_conv/files/ti_et_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ti_et_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/tig_orth.c b/fc-lang_conv/files/tig_orth.c index be6a746..3f99c1f 100644 --- a/fc-lang_conv/files/tig_orth.c +++ b/fc-lang_conv/files/tig_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tig_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/tk_orth.c b/fc-lang_conv/files/tk_orth.c index 67bcd7c..d7c2b69 100644 --- a/fc-lang_conv/files/tk_orth.c +++ b/fc-lang_conv/files/tk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tk_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/tl_orth.c b/fc-lang_conv/files/tl_orth.c index 5febfdc..f8f484b 100644 --- a/fc-lang_conv/files/tl_orth.c +++ b/fc-lang_conv/files/tl_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tl_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/tn_orth.c b/fc-lang_conv/files/tn_orth.c index 7924bf5..34f3c01 100644 --- a/fc-lang_conv/files/tn_orth.c +++ b/fc-lang_conv/files/tn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tn_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/to_orth.c b/fc-lang_conv/files/to_orth.c index 9cf0fc8..72ade70 100644 --- a/fc-lang_conv/files/to_orth.c +++ b/fc-lang_conv/files/to_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int to_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/tr_orth.c b/fc-lang_conv/files/tr_orth.c index f87fdd2..e19bbb3 100644 --- a/fc-lang_conv/files/tr_orth.c +++ b/fc-lang_conv/files/tr_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tr_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ts_orth.c b/fc-lang_conv/files/ts_orth.c index b0a3bc6..bab0105 100644 --- a/fc-lang_conv/files/ts_orth.c +++ b/fc-lang_conv/files/ts_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ts_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/tt_orth.c b/fc-lang_conv/files/tt_orth.c index d3fe922..b9ba256 100644 --- a/fc-lang_conv/files/tt_orth.c +++ b/fc-lang_conv/files/tt_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tt_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/tw_orth.c b/fc-lang_conv/files/tw_orth.c index ae83164..316bac1 100644 --- a/fc-lang_conv/files/tw_orth.c +++ b/fc-lang_conv/files/tw_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tw_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ty_orth.c b/fc-lang_conv/files/ty_orth.c index afe4458..80e4b6d 100644 --- a/fc-lang_conv/files/ty_orth.c +++ b/fc-lang_conv/files/ty_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ty_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/tyv_orth.c b/fc-lang_conv/files/tyv_orth.c index be55177..6d7ae43 100644 --- a/fc-lang_conv/files/tyv_orth.c +++ b/fc-lang_conv/files/tyv_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int tyv_lang_orth_chars[] = { 0x0401, diff --git a/fc-lang_conv/files/ug_orth.c b/fc-lang_conv/files/ug_orth.c index 7620156..c5b7c67 100644 --- a/fc-lang_conv/files/ug_orth.c +++ b/fc-lang_conv/files/ug_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ug_lang_orth_chars[] = { 0xf0f0ffff, 0x0626, 0x0628, // range diff --git a/fc-lang_conv/files/uk_orth.c b/fc-lang_conv/files/uk_orth.c index 9f551b0..623a1d4 100644 --- a/fc-lang_conv/files/uk_orth.c +++ b/fc-lang_conv/files/uk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int uk_lang_orth_chars[] = { 0x0404, diff --git a/fc-lang_conv/files/und_zmth_orth.c b/fc-lang_conv/files/und_zmth_orth.c index 84df495..b8e915b 100644 --- a/fc-lang_conv/files/und_zmth_orth.c +++ b/fc-lang_conv/files/und_zmth_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int und_zmth_lang_orth_chars[] = { 0x0020, diff --git a/fc-lang_conv/files/und_zsye_orth.c b/fc-lang_conv/files/und_zsye_orth.c index 058fd97..6a678d3 100644 --- a/fc-lang_conv/files/und_zsye_orth.c +++ b/fc-lang_conv/files/und_zsye_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int und_zsye_lang_orth_chars[] = { 0xf0f0ffff, 0x231a, 0x231b, // range diff --git a/fc-lang_conv/files/ur_orth.c b/fc-lang_conv/files/ur_orth.c index ba77d50..3044d49 100644 --- a/fc-lang_conv/files/ur_orth.c +++ b/fc-lang_conv/files/ur_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ur_lang_orth_chars[] = { 0xf0f0ffff, 0x0621, 0x0624, // range diff --git a/fc-lang_conv/files/uz_orth.c b/fc-lang_conv/files/uz_orth.c index 6b56d97..4a44ff7 100644 --- a/fc-lang_conv/files/uz_orth.c +++ b/fc-lang_conv/files/uz_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int uz_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/ve_orth.c b/fc-lang_conv/files/ve_orth.c index 5deb773..303c137 100644 --- a/fc-lang_conv/files/ve_orth.c +++ b/fc-lang_conv/files/ve_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int ve_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/vi_orth.c b/fc-lang_conv/files/vi_orth.c index 3b89f8f..9d959be 100644 --- a/fc-lang_conv/files/vi_orth.c +++ b/fc-lang_conv/files/vi_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int vi_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/vo_orth.c b/fc-lang_conv/files/vo_orth.c index 7efa8e8..d34aa30 100644 --- a/fc-lang_conv/files/vo_orth.c +++ b/fc-lang_conv/files/vo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int vo_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x0050, // range diff --git a/fc-lang_conv/files/vot_orth.c b/fc-lang_conv/files/vot_orth.c index 36fa961..df5c4b6 100644 --- a/fc-lang_conv/files/vot_orth.c +++ b/fc-lang_conv/files/vot_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int vot_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/wa_orth.c b/fc-lang_conv/files/wa_orth.c index 454def6..c3f3acc 100644 --- a/fc-lang_conv/files/wa_orth.c +++ b/fc-lang_conv/files/wa_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int wa_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/wal_orth.c b/fc-lang_conv/files/wal_orth.c index 5baa01e..be9d4b6 100644 --- a/fc-lang_conv/files/wal_orth.c +++ b/fc-lang_conv/files/wal_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int wal_lang_orth_chars[] = { 0xf0f0ffff, 0x1200, 0x1206, // range diff --git a/fc-lang_conv/files/wen_orth.c b/fc-lang_conv/files/wen_orth.c index 850f016..7115582 100644 --- a/fc-lang_conv/files/wen_orth.c +++ b/fc-lang_conv/files/wen_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int wen_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/wo_orth.c b/fc-lang_conv/files/wo_orth.c index 4c38ac4..c529301 100644 --- a/fc-lang_conv/files/wo_orth.c +++ b/fc-lang_conv/files/wo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int wo_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/xh_orth.c b/fc-lang_conv/files/xh_orth.c index 1310b42..a60a8ce 100644 --- a/fc-lang_conv/files/xh_orth.c +++ b/fc-lang_conv/files/xh_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int xh_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/yap_orth.c b/fc-lang_conv/files/yap_orth.c index e74d1df..d4c0671 100644 --- a/fc-lang_conv/files/yap_orth.c +++ b/fc-lang_conv/files/yap_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int yap_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/yi_orth.c b/fc-lang_conv/files/yi_orth.c index 4a7d3ec..068985a 100644 --- a/fc-lang_conv/files/yi_orth.c +++ b/fc-lang_conv/files/yi_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int yi_lang_orth_chars[] = { 0xf0f0ffff, 0x05d0, 0x05ea, // range diff --git a/fc-lang_conv/files/yo_orth.c b/fc-lang_conv/files/yo_orth.c index 8c5b0d3..3771ecc 100644 --- a/fc-lang_conv/files/yo_orth.c +++ b/fc-lang_conv/files/yo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int yo_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/za_orth.c b/fc-lang_conv/files/za_orth.c index 0f3ee8b..8802308 100644 --- a/fc-lang_conv/files/za_orth.c +++ b/fc-lang_conv/files/za_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int za_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/files/zh_cn_orth.c b/fc-lang_conv/files/zh_cn_orth.c index b7606a9..cbfb9b1 100644 --- a/fc-lang_conv/files/zh_cn_orth.c +++ b/fc-lang_conv/files/zh_cn_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int zh_cn_lang_orth_chars[] = { 0x02c7, diff --git a/fc-lang_conv/files/zh_hk_orth.c b/fc-lang_conv/files/zh_hk_orth.c index 327aa59..1a07336 100644 --- a/fc-lang_conv/files/zh_hk_orth.c +++ b/fc-lang_conv/files/zh_hk_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int zh_hk_lang_orth_chars[] = { 0x3007, diff --git a/fc-lang_conv/files/zh_mo_orth.c b/fc-lang_conv/files/zh_mo_orth.c index dec43ca..26f3e55 100644 --- a/fc-lang_conv/files/zh_mo_orth.c +++ b/fc-lang_conv/files/zh_mo_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int zh_mo_lang_orth_chars[] = { 0x3007, diff --git a/fc-lang_conv/files/zh_sg_orth.c b/fc-lang_conv/files/zh_sg_orth.c index 9218cbb..a19b586 100644 --- a/fc-lang_conv/files/zh_sg_orth.c +++ b/fc-lang_conv/files/zh_sg_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int zh_sg_lang_orth_chars[] = { 0x02c7, diff --git a/fc-lang_conv/files/zh_tw_orth.c b/fc-lang_conv/files/zh_tw_orth.c index 495bb9f..5446f9f 100644 --- a/fc-lang_conv/files/zh_tw_orth.c +++ b/fc-lang_conv/files/zh_tw_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int zh_tw_lang_orth_chars[] = { 0x4e00, diff --git a/fc-lang_conv/files/zu_orth.c b/fc-lang_conv/files/zu_orth.c index ad2ec21..eafd2a8 100644 --- a/fc-lang_conv/files/zu_orth.c +++ b/fc-lang_conv/files/zu_orth.c @@ -2,7 +2,7 @@ // This file is autogenerated from fc-lang database. // https://www.freedesktop.org/wiki/Software/fontconfig/ // https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang -// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw +// by convert utility from https://github.com/virxkane/freetype_textdraw const unsigned int zu_lang_orth_chars[] = { 0xf0f0ffff, 0x0041, 0x005a, // range diff --git a/fc-lang_conv/getline_win32.c b/fc-lang_conv/getline_win32.c deleted file mode 100644 index b0965cb..0000000 --- a/fc-lang_conv/getline_win32.c +++ /dev/null @@ -1,56 +0,0 @@ -#include "getline_win32.h" -#include - -#ifdef _WIN32 -ssize_t getline(char **lineptr, size_t *n, FILE *stream) -{ - if (!lineptr || !n || !stream) - return -1; - if (*n == 0) - { - if (!*lineptr) - { - *lineptr = (char*)malloc(16); - if (*lineptr) - *n = 16; - else - return -1; - } - else - return -1; - } - char c; - ssize_t count = 0; - size_t ret; - char* ptr = *lineptr; - while (1) - { - ret = fread(&c, 1, 1, stream); - if (ret != 1) - break; - if (*n <= count + 1) - { - char* tmp = (char*)realloc(*lineptr, *n + 16); - if (tmp) - { - *lineptr = tmp; - *n += 16; - ptr = *lineptr + count; - } - else - { - // memory error - count = -1; - break; - } - } - *ptr = c; - ptr++; - count++; - if (c == '\n') - break; - } - *ptr = 0; - return count; -} -#endif diff --git a/fc-lang_conv/getline_win32.h b/fc-lang_conv/getline_win32.h deleted file mode 100644 index feac660..0000000 --- a/fc-lang_conv/getline_win32.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef GETLINE_WIN32_H -#define GETLINE_WIN32_H - -#include - -#ifdef _WIN32 - -#ifdef __cplusplus -extern "C" { -#endif - -ssize_t getline(char **lineptr, size_t *n, FILE *stream); - -#ifdef __cplusplus -} -#endif - -#endif // _WIN32 - -#endif // GETLINE_WIN32_H diff --git a/fc-lang_conv/main.c b/fc-lang_conv/main.c deleted file mode 100644 index 96bbc65..0000000 --- a/fc-lang_conv/main.c +++ /dev/null @@ -1,318 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2019 by Chernov A.A. * - * valexlin@gmail.com * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation, either version 3 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program. If not, see . * - ***************************************************************************/ - -// Parse fc-lang *.orth file and produce c-include file. - -#include -#include -#include -#include -#include - -#define MAX_LANG_LEN 20 -#define CODE_IN_RANGE 0xF0F0FFFF // By defifnition this is invalid code point. - -int processFile(const char* langName, const char* sourceFileName, const char* destFileName); - -int main(int argc, char* argv[]) -{ - const char* sourceFileName = 0; - char destFileName[MAX_LANG_LEN + 10]; - char langName[MAX_LANG_LEN + 1]; - if (argc > 1) - { - sourceFileName = (const char* )argv[1]; - } - else - { - printf("Usage:\n"); - printf("%s [output-file]\n", argv[0]); - return 1; - } - if (argc > 2) - { - strncpy(destFileName, argv[2], MAX_LANG_LEN + 9); - destFileName[MAX_LANG_LEN + 9] = 0; - } - else - destFileName[0] = 0; - char* ptr = strrchr(sourceFileName, '/'); - if (ptr) - strncpy(langName, ptr + 1, MAX_LANG_LEN); - else - strncpy(langName, sourceFileName, MAX_LANG_LEN); - langName[MAX_LANG_LEN] = 0; - ptr = strrchr(langName, '.'); - if (ptr) - *ptr = 0; - if (0 == destFileName[0]) - sprintf(destFileName, "%s_orth.c", langName); - - fprintf(stderr, "source file: %s\n", sourceFileName); - fprintf(stderr, "destination file: %s\n", destFileName); - fprintf(stderr, "language: %s\n", langName); - - int ret = processFile(langName, sourceFileName, destFileName); - return ret; -} - -int parseFile(const char *dirName, FILE* fin, FILE* fout); - -int processFile(const char* langName, const char *sourceFileName, const char *destFileName) -{ - char* ptr; - char *uptr, *lptr; - int i; - int count; - - FILE* fin = fopen(sourceFileName, "rt"); - if (NULL == fin) - { - fprintf(stderr, "Can't open file `%s' for reading!\n", sourceFileName); - return 0; - } - FILE* fout = fopen(destFileName, "wt"); - if (NULL == fout) - { - fprintf(stderr, "Can't open file `%s' for writing!\n", destFileName); - fclose(fin); - return 0; - } - - char dirName[PATH_MAX]; - ptr = strrchr(sourceFileName, '/'); - if (ptr) - { - int len = ptr - sourceFileName; - if (len >= PATH_MAX - 1) - len = PATH_MAX - 1; - strncpy(dirName, sourceFileName, len); - dirName[len] = 0; - } - else - strcpy(dirName, "."); - - fprintf(stderr, "processing orth-file for language %s\n", langName); - char langName_UC[MAX_LANG_LEN + 1]; - char langName_LC[MAX_LANG_LEN + 1]; - ptr = (char*)langName; - uptr = langName_UC; - lptr = langName_LC; - i = 0; - while (*ptr && i < MAX_LANG_LEN) - { - *uptr = toupper(*ptr); - *lptr = tolower(*ptr); - uptr++; - lptr++; - ptr++; - i++; - } - *uptr = 0; - *lptr = 0; - //fprintf(fout, "#ifndef %s_LANG_ORTH_H\n", langName_UC); - //fprintf(fout, "#define %s_LANG_ORTH_H\n", langName_UC); - fprintf(fout, "\n"); - fprintf(fout, "// This file is autogenerated from fc-lang database.\n"); - fprintf(fout, "// https://www.freedesktop.org/wiki/Software/fontconfig/\n"); - fprintf(fout, "// https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang\n"); - fprintf(fout, "// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw\n"); - fprintf(fout, "\n"); - fprintf(fout, "const unsigned int %s_lang_orth_chars[] = {\n", langName_LC); - count = parseFile(dirName, fin, fout); - fprintf(fout, "};\n"); - //fprintf(fout, "unsigned int %s_lang_orth_size = %u;\n", langName_LC, count); - fprintf(fout, "#define %s_LANG_ORTH_SZ %u\n", langName_UC, count); - //fprintf(fout, "\n"); - //fprintf(fout, "#endif // %s_LANG_ORTH_H\n", langName_UC); - fclose(fout); - fclose(fin); - return count > 0 ? 1 : 0; -} - -int parseFile(const char *dirName, FILE* fin, FILE* fout) -{ - int count = 0; - int ok; - char* line = 0; - size_t line_sz = 0; - size_t len; - char incFileName[PATH_MAX]; - char* ptr; - char* eptr; - char *endptr; - char* saveptr; - unsigned int first, second; - while ( getline(&line, &line_sz, fin) != -1 ) - { - len = strlen(line); - if (line > 0) - { - if ('\n' == line[len-1]) - { - line[len-1] = 0; - len--; - if ('\r' == line[len-1]) - { - line[len-1] = 0; - len--; - } - } - ptr = line; - // skip leading spaces - while (*ptr && isspace(*ptr)) - { - ptr++; - len--; - } - // skip trailing spaces - if (len > 0) - { - eptr = ptr + len - 1; - while (eptr > ptr && isspace(*eptr)) - { - *eptr = 0; - eptr--; - len--; - } - } - // skip trailing comment - if (len > 0) - { - eptr = strchr(ptr, '#'); - if (eptr) - { - *eptr = 0; - len = eptr - ptr; - // ... and then again trailing spaces - if (len > 0) - { - eptr = ptr + len - 1; - while (eptr > ptr && isspace(*eptr)) - { - *eptr = 0; - eptr--; - len--; - } - } - } - } - if (0 == len || '#' == *ptr) - ; // skip empty or commented lines - else - { - //printf("line=%s, len=%u\n", line, (unsigned int)len); - if (strncmp(ptr, "include ", 8) == 0) - { - ok = 0; // reset flag before line parsing - saveptr = ptr; - if (len > 9) - { - ptr = ptr + 8; - while (*ptr && isspace(*ptr)) - ptr++; - if (*ptr) - { - sprintf(incFileName, "%s/%s", dirName, ptr); - FILE* newfin = fopen(incFileName, "rt"); - if (NULL != newfin) - { - fprintf(stderr, "processed included file: \"%s\"\n", incFileName); - int inc_count = parseFile(dirName, newfin, fout); - fclose(newfin); - if (inc_count > 0) - { - ok = 1; - count += inc_count; - } - } - } - } - if (0 == ok) - fprintf(stderr, "Failed to parse line: \"%s\"\n", saveptr); - } - else - { - ok = 0; // reset flag before line parsing - first = strtoul(ptr, &endptr, 16); - if (endptr > ptr) - { - if (0 == *endptr) - { - second = 0; - ok = 1; // line contains one number - } - else - { - if ('-' == *endptr) - { - ptr = endptr + 1; - if (*ptr) - { - second = strtoul(ptr, &endptr, 16); - if (endptr > ptr && (0 == *endptr || isspace(endptr))) - ok = 1; - } - } - else if ('.' == *endptr) - { - ptr = endptr + 1; - if ('.' == *ptr) - { - ptr++; - if (*ptr) - { - second = strtoul(ptr, &endptr, 16); - if (endptr > ptr && (0 == *endptr || isspace(endptr))) - ok = 1; - } - } - } - else if (isspace(*endptr)) - { - // just comment witout char '#' - second = 0; - ok = 1; - } - } - } - if (ok) - { - if (0 == second) - { - fprintf(fout, "\t0x%04x,\n", first); - count++; - } - else - { - fprintf(fout, "\t0x%08x, 0x%04x, 0x%04x, // range\n", CODE_IN_RANGE, first, second); - count += 3; - } - } - } - if (0 == ok) - { - fprintf(stderr, "Failed to parse line: %s\n", line); - } - } - } - } - if (line) - free(line); - return count; -} diff --git a/fc-lang_conv/update.sh.cmake b/fc-lang_conv/update.sh.cmake deleted file mode 100755 index 186f09b..0000000 --- a/fc-lang_conv/update.sh.cmake +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/sh - -die() -{ - echo $* - exit 1 -} - -fc_lang_dir="@CMAKE_SOURCE_DIR@/fc-lang" -cat_srcdir="@CMAKE_CURRENT_SOURCE_DIR@/files" -cat_srcfile="@CMAKE_CURRENT_SOURCE_DIR@/fc-lang-cat.c" - -orth_files=`ls ${fc_lang_dir}/*.orth` - -# Firstly convert all *.orth files -cd "@CMAKE_CURRENT_SOURCE_DIR@/files/" || die -for f in ${orth_files} -do - #echo $f - @CMAKE_CURRENT_BINARY_DIR@/fc-lang_conv "${f}" -done -cd .. || die - -# Header of "fc-lang-cat.c" -echo > "${cat_srcfile}" -echo "// This file is autogenerated from fc-lang database." >> "${cat_srcfile}" -echo "// https://www.freedesktop.org/wiki/Software/fontconfig/" >> "${cat_srcfile}" -echo "// https://gitlab.freedesktop.org/fontconfig/fontconfig/tree/master/fc-lang" >> "${cat_srcfile}" -echo "// by fc-lang_conv at https://github.com/virxkane/freetype_textdraw" >> "${cat_srcfile}" -echo >> "${cat_srcfile}" -echo "#include \"fc-lang-cat.h\"" >> "${cat_srcfile}" -echo >> "${cat_srcfile}" - -# Then get list of all source files -orth_src_files=`ls "${cat_srcdir}"/*_orth.c` - -# Insert '#include' for all sources -cat_sz=0 -for f in ${orth_src_files} -do - f=`basename ${f}` - echo "#include \"files/${f}\"" >> "${cat_srcfile}" - cat_sz=`expr ${cat_sz} + 1` -done -echo >> "${cat_srcfile}" - -echo '#include ' >> "${cat_srcfile}" -echo >> "${cat_srcfile}" - -echo "#define FC_LANG_CAT_SZ ${cat_sz}" >> "${cat_srcfile}" -echo "const struct fc_lang_catalog fc_lang_cat[] = {" >> "${cat_srcfile}" - -# fill fc-lang table -for f in ${orth_src_files} -do - lang_code=`basename "${f}" _orth.c` - lang_code_lc=`echo ${lang_code} | tr '[:upper:]' '[:lower:]'` - lang_code_uc=`echo ${lang_code} | tr '[:lower:]' '[:upper:]'` - echo " \"${lang_code_lc}\", ${lang_code_uc}_LANG_ORTH_SZ, ${lang_code_lc}_lang_orth_chars," >> "${cat_srcfile}" -done - -echo "};" >> "${cat_srcfile}" -echo "const unsigned int fc_lang_cat_sz = ${cat_sz};" >> "${cat_srcfile}" -echo >> "${cat_srcfile}" - -cat "@CMAKE_CURRENT_SOURCE_DIR@/fc-lang-cat_find.c.tmpl" >> "${cat_srcfile}" -echo >> "${cat_srcfile}" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2c47407..e8169a8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -28,7 +28,7 @@ if(WIN32) endif(WIN32) add_executable(${EXE_NAME} WIN32 ${SRC_LIST} ${QRC_GEN_FILES}) -target_link_libraries(${EXE_NAME} Qt5::Core Qt5::Gui Qt5::Widgets ${FREETYPE_LIBRARIES} ${HARFBUZZ_LIBRARIES} ${LDADD_LIBS} fc-lang-cat) +target_link_libraries(${EXE_NAME} Qt5::Core Qt5::Gui Qt5::Widgets ${FREETYPE_LIBRARIES} ${HARFBUZZ_LIBRARIES} ${LDADD_LIBS} fc-lang-data) install(TARGETS ${EXE_NAME} RUNTIME DESTINATION bin) configure_file(valgrind_check.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/valgrind_check.sh) diff --git a/src/lowlevel_textrender.cpp b/src/lowlevel_textrender.cpp index 70d27df..38bf03e 100644 --- a/src/lowlevel_textrender.cpp +++ b/src/lowlevel_textrender.cpp @@ -19,7 +19,7 @@ #include "lowlevel_textrender.h" #include "lowlevel_textrender_private.h" -#include "fc-lang-cat.h" +#include "fc-lang-data.h" #include @@ -114,19 +114,19 @@ QStringList GLowLevelTextRender::getSupportedLanguages() { QStringList list; - qDebug() << "number of records in fc_lang_cat =" << fc_lang_cat_sz; - int sz = sizeof(fc_lang_catalog)*fc_lang_cat_sz; + qDebug() << "number of records in fc_lang_data =" << get_fc_lang_data_size(); + int sz = sizeof(fc_lang_rec)*get_fc_lang_data_size(); - const struct fc_lang_catalog* langPtr = fc_lang_cat; - for (int i = 0; i < fc_lang_cat_sz; i++) + const struct fc_lang_rec* lang_ptr = get_fc_lang_data(); + for (int i = 0; i < get_fc_lang_data_size(); i++) { - sz += strlen(langPtr->lang_code) + 1; - sz += langPtr->char_set_sz*sizeof(unsigned int); - if (m_d->checklanguageSupport(langPtr->lang_code)) - list.append(QString(langPtr->lang_code)); - langPtr++; + sz += strlen(lang_ptr->lang_code) + 1; + sz += lang_ptr->char_set_sz*sizeof(unsigned int); + if (m_d->checklanguageSupport(lang_ptr->lang_code)) + list.append(QString(lang_ptr->lang_code)); + lang_ptr++; } - qDebug() << "sizeof(fc_lang_cat) =" << sz << "bytes = " << sz/1024 << "kb"; + qDebug() << "sizeof(fc_lang_data) =" << sz << "bytes = " << sz/1024 << "kb"; return list; } diff --git a/src/lowlevel_textrender_private.cpp b/src/lowlevel_textrender_private.cpp index e10e28c..45fa9ce 100644 --- a/src/lowlevel_textrender_private.cpp +++ b/src/lowlevel_textrender_private.cpp @@ -20,7 +20,7 @@ #include -#include "fc-lang-cat.h" +#include "fc-lang-data.h" #ifdef USE_HARFBUZZ // HarfBuzz-Freetype @@ -289,10 +289,10 @@ bool GLowLevelTextRenderPrivate::checklanguageSupport(const QString& langCode) { bool fullSupport = false; bool partialSupport = false; - const struct fc_lang_catalog* lang_ptr = fc_lang_cat; + const struct fc_lang_rec* lang_ptr = get_fc_lang_data(); int i; bool found = false; - for (i = 0; i < fc_lang_cat_sz; i++) + for (i = 0; i < get_fc_lang_data_size(); i++) { if (langCode.compare(lang_ptr->lang_code) == 0) {