Split up is*rune() and to*rune() functions into individual source files

This optimizes the binary size for each tool that uses these functions.
Previously, if a program just used one single function, maybe even a
one-liner, it would statically compile in all lookup-tables, bloating
the binary by up to 20K.
All these changes are derived from a local libutf where I do the
primary changes. So I hope that I can merge these things into libutf
sooner or later, as discussed on the ml.
This commit is contained in:
FRIGN 2015-02-11 15:44:54 +01:00
parent 471cf8f5bc
commit f9846a9a6b
18 changed files with 5945 additions and 5857 deletions

View File

@ -10,7 +10,6 @@ HDR =\
fs.h\
md5.h\
queue.h\
runetypebody.h\
sha1.h\
sha256.h\
sha512.h\
@ -20,12 +19,25 @@ HDR =\
LIBUTF = libutf.a
LIBUTFSRC =\
libutf/chartorunearr.c\
libutf/readrune.c\
libutf/rune.c\
libutf/runetype.c\
libutf/utf.c\
libutf/writerune.c
libutf/chartorunearr.c\
libutf/readrune.c\
libutf/writerune.c\
libutf/isalnumrune.c\
libutf/isalpharune.c\
libutf/isblankrune.c\
libutf/iscntrlrune.c\
libutf/isdigitrune.c\
libutf/isgraphrune.c\
libutf/isprintrune.c\
libutf/ispunctrune.c\
libutf/isspacerune.c\
libutf/istitlerune.c\
libutf/isxdigitrune.c\
libutf/lowerrune.c\
libutf/upperrune.c
LIBUTIL = libutil.a
LIBUTILSRC =\

9
libutf/isalnumrune.c Normal file
View File

@ -0,0 +1,9 @@
/* Automatically generated by mkrunetype.awk */
#include "../utf.h"
#include "runetype.h"
int
isalnumrune(Rune r)
{
return isalpharune(r) || isdigitrune(r);
}

565
libutf/isalpharune.c Normal file
View File

@ -0,0 +1,565 @@
/* Automatically generated by mkrunetype.awk */
#include <stdlib.h>
#include "../utf.h"
#include "runetype.h"
static Rune alpha2[][2] = {
{ 0x0041, 0x005A },
{ 0x0061, 0x007A },
{ 0x00C0, 0x00D6 },
{ 0x00D8, 0x00F6 },
{ 0x00F8, 0x02C1 },
{ 0x02C6, 0x02D1 },
{ 0x02E0, 0x02E4 },
{ 0x0370, 0x0374 },
{ 0x0376, 0x0377 },
{ 0x037A, 0x037D },
{ 0x0388, 0x038A },
{ 0x038E, 0x03A1 },
{ 0x03A3, 0x03F5 },
{ 0x03F7, 0x0481 },
{ 0x048A, 0x052F },
{ 0x0531, 0x0556 },
{ 0x0561, 0x0587 },
{ 0x05D0, 0x05EA },
{ 0x05F0, 0x05F2 },
{ 0x0620, 0x064A },
{ 0x066E, 0x066F },
{ 0x0671, 0x06D3 },
{ 0x06E5, 0x06E6 },
{ 0x06EE, 0x06EF },
{ 0x06FA, 0x06FC },
{ 0x0712, 0x072F },
{ 0x074D, 0x07A5 },
{ 0x07CA, 0x07EA },
{ 0x07F4, 0x07F5 },
{ 0x0800, 0x0815 },
{ 0x0840, 0x0858 },
{ 0x08A0, 0x08B2 },
{ 0x0904, 0x0939 },
{ 0x0958, 0x0961 },
{ 0x0971, 0x0980 },
{ 0x0985, 0x098C },
{ 0x098F, 0x0990 },
{ 0x0993, 0x09A8 },
{ 0x09AA, 0x09B0 },
{ 0x09B6, 0x09B9 },
{ 0x09DC, 0x09DD },
{ 0x09DF, 0x09E1 },
{ 0x09F0, 0x09F1 },
{ 0x0A05, 0x0A0A },
{ 0x0A0F, 0x0A10 },
{ 0x0A13, 0x0A28 },
{ 0x0A2A, 0x0A30 },
{ 0x0A32, 0x0A33 },
{ 0x0A35, 0x0A36 },
{ 0x0A38, 0x0A39 },
{ 0x0A59, 0x0A5C },
{ 0x0A72, 0x0A74 },
{ 0x0A85, 0x0A8D },
{ 0x0A8F, 0x0A91 },
{ 0x0A93, 0x0AA8 },
{ 0x0AAA, 0x0AB0 },
{ 0x0AB2, 0x0AB3 },
{ 0x0AB5, 0x0AB9 },
{ 0x0AE0, 0x0AE1 },
{ 0x0B05, 0x0B0C },
{ 0x0B0F, 0x0B10 },
{ 0x0B13, 0x0B28 },
{ 0x0B2A, 0x0B30 },
{ 0x0B32, 0x0B33 },
{ 0x0B35, 0x0B39 },
{ 0x0B5C, 0x0B5D },
{ 0x0B5F, 0x0B61 },
{ 0x0B85, 0x0B8A },
{ 0x0B8E, 0x0B90 },
{ 0x0B92, 0x0B95 },
{ 0x0B99, 0x0B9A },
{ 0x0B9E, 0x0B9F },
{ 0x0BA3, 0x0BA4 },
{ 0x0BA8, 0x0BAA },
{ 0x0BAE, 0x0BB9 },
{ 0x0C05, 0x0C0C },
{ 0x0C0E, 0x0C10 },
{ 0x0C12, 0x0C28 },
{ 0x0C2A, 0x0C39 },
{ 0x0C58, 0x0C59 },
{ 0x0C60, 0x0C61 },
{ 0x0C85, 0x0C8C },
{ 0x0C8E, 0x0C90 },
{ 0x0C92, 0x0CA8 },
{ 0x0CAA, 0x0CB3 },
{ 0x0CB5, 0x0CB9 },
{ 0x0CE0, 0x0CE1 },
{ 0x0CF1, 0x0CF2 },
{ 0x0D05, 0x0D0C },
{ 0x0D0E, 0x0D10 },
{ 0x0D12, 0x0D3A },
{ 0x0D60, 0x0D61 },
{ 0x0D7A, 0x0D7F },
{ 0x0D85, 0x0D96 },
{ 0x0D9A, 0x0DB1 },
{ 0x0DB3, 0x0DBB },
{ 0x0DC0, 0x0DC6 },
{ 0x0E01, 0x0E30 },
{ 0x0E32, 0x0E33 },
{ 0x0E40, 0x0E46 },
{ 0x0E81, 0x0E82 },
{ 0x0E87, 0x0E88 },
{ 0x0E94, 0x0E97 },
{ 0x0E99, 0x0E9F },
{ 0x0EA1, 0x0EA3 },
{ 0x0EAA, 0x0EAB },
{ 0x0EAD, 0x0EB0 },
{ 0x0EB2, 0x0EB3 },
{ 0x0EC0, 0x0EC4 },
{ 0x0EDC, 0x0EDF },
{ 0x0F40, 0x0F47 },
{ 0x0F49, 0x0F6C },
{ 0x0F88, 0x0F8C },
{ 0x1000, 0x102A },
{ 0x1050, 0x1055 },
{ 0x105A, 0x105D },
{ 0x1065, 0x1066 },
{ 0x106E, 0x1070 },
{ 0x1075, 0x1081 },
{ 0x10A0, 0x10C5 },
{ 0x10D0, 0x10FA },
{ 0x10FC, 0x1248 },
{ 0x124A, 0x124D },
{ 0x1250, 0x1256 },
{ 0x125A, 0x125D },
{ 0x1260, 0x1288 },
{ 0x128A, 0x128D },
{ 0x1290, 0x12B0 },
{ 0x12B2, 0x12B5 },
{ 0x12B8, 0x12BE },
{ 0x12C2, 0x12C5 },
{ 0x12C8, 0x12D6 },
{ 0x12D8, 0x1310 },
{ 0x1312, 0x1315 },
{ 0x1318, 0x135A },
{ 0x1380, 0x138F },
{ 0x13A0, 0x13F4 },
{ 0x1401, 0x166C },
{ 0x166F, 0x167F },
{ 0x1681, 0x169A },
{ 0x16A0, 0x16EA },
{ 0x16F1, 0x16F8 },
{ 0x1700, 0x170C },
{ 0x170E, 0x1711 },
{ 0x1720, 0x1731 },
{ 0x1740, 0x1751 },
{ 0x1760, 0x176C },
{ 0x176E, 0x1770 },
{ 0x1780, 0x17B3 },
{ 0x1820, 0x1877 },
{ 0x1880, 0x18A8 },
{ 0x18B0, 0x18F5 },
{ 0x1900, 0x191E },
{ 0x1950, 0x196D },
{ 0x1970, 0x1974 },
{ 0x1980, 0x19AB },
{ 0x19C1, 0x19C7 },
{ 0x1A00, 0x1A16 },
{ 0x1A20, 0x1A54 },
{ 0x1B05, 0x1B33 },
{ 0x1B45, 0x1B4B },
{ 0x1B83, 0x1BA0 },
{ 0x1BAE, 0x1BAF },
{ 0x1BBA, 0x1BE5 },
{ 0x1C00, 0x1C23 },
{ 0x1C4D, 0x1C4F },
{ 0x1C5A, 0x1C7D },
{ 0x1CE9, 0x1CEC },
{ 0x1CEE, 0x1CF1 },
{ 0x1CF5, 0x1CF6 },
{ 0x1D00, 0x1DBF },
{ 0x1E00, 0x1F15 },
{ 0x1F18, 0x1F1D },
{ 0x1F20, 0x1F45 },
{ 0x1F48, 0x1F4D },
{ 0x1F50, 0x1F57 },
{ 0x1F5F, 0x1F7D },
{ 0x1F80, 0x1FB4 },
{ 0x1FB6, 0x1FBC },
{ 0x1FC2, 0x1FC4 },
{ 0x1FC6, 0x1FCC },
{ 0x1FD0, 0x1FD3 },
{ 0x1FD6, 0x1FDB },
{ 0x1FE0, 0x1FEC },
{ 0x1FF2, 0x1FF4 },
{ 0x1FF6, 0x1FFC },
{ 0x2090, 0x209C },
{ 0x210A, 0x2113 },
{ 0x2119, 0x211D },
{ 0x212A, 0x212D },
{ 0x212F, 0x2139 },
{ 0x213C, 0x213F },
{ 0x2145, 0x2149 },
{ 0x2183, 0x2184 },
{ 0x2C00, 0x2C2E },
{ 0x2C30, 0x2C5E },
{ 0x2C60, 0x2CE4 },
{ 0x2CEB, 0x2CEE },
{ 0x2CF2, 0x2CF3 },
{ 0x2D00, 0x2D25 },
{ 0x2D30, 0x2D67 },
{ 0x2D80, 0x2D96 },
{ 0x2DA0, 0x2DA6 },
{ 0x2DA8, 0x2DAE },
{ 0x2DB0, 0x2DB6 },
{ 0x2DB8, 0x2DBE },
{ 0x2DC0, 0x2DC6 },
{ 0x2DC8, 0x2DCE },
{ 0x2DD0, 0x2DD6 },
{ 0x2DD8, 0x2DDE },
{ 0x3005, 0x3006 },
{ 0x3031, 0x3035 },
{ 0x303B, 0x303C },
{ 0x3041, 0x3096 },
{ 0x309D, 0x309F },
{ 0x30A1, 0x30FA },
{ 0x30FC, 0x30FF },
{ 0x3105, 0x312D },
{ 0x3131, 0x318E },
{ 0x31A0, 0x31BA },
{ 0x31F0, 0x31FF },
{ 0xA000, 0xA48C },
{ 0xA4D0, 0xA4FD },
{ 0xA500, 0xA60C },
{ 0xA610, 0xA61F },
{ 0xA62A, 0xA62B },
{ 0xA640, 0xA66E },
{ 0xA67F, 0xA69D },
{ 0xA6A0, 0xA6E5 },
{ 0xA717, 0xA71F },
{ 0xA722, 0xA788 },
{ 0xA78B, 0xA78E },
{ 0xA790, 0xA7AD },
{ 0xA7B0, 0xA7B1 },
{ 0xA7F7, 0xA801 },
{ 0xA803, 0xA805 },
{ 0xA807, 0xA80A },
{ 0xA80C, 0xA822 },
{ 0xA840, 0xA873 },
{ 0xA882, 0xA8B3 },
{ 0xA8F2, 0xA8F7 },
{ 0xA90A, 0xA925 },
{ 0xA930, 0xA946 },
{ 0xA960, 0xA97C },
{ 0xA984, 0xA9B2 },
{ 0xA9E0, 0xA9E4 },
{ 0xA9E6, 0xA9EF },
{ 0xA9FA, 0xA9FE },
{ 0xAA00, 0xAA28 },
{ 0xAA40, 0xAA42 },
{ 0xAA44, 0xAA4B },
{ 0xAA60, 0xAA76 },
{ 0xAA7E, 0xAAAF },
{ 0xAAB5, 0xAAB6 },
{ 0xAAB9, 0xAABD },
{ 0xAADB, 0xAADD },
{ 0xAAE0, 0xAAEA },
{ 0xAAF2, 0xAAF4 },
{ 0xAB01, 0xAB06 },
{ 0xAB09, 0xAB0E },
{ 0xAB11, 0xAB16 },
{ 0xAB20, 0xAB26 },
{ 0xAB28, 0xAB2E },
{ 0xAB30, 0xAB5A },
{ 0xAB5C, 0xAB5F },
{ 0xAB64, 0xAB65 },
{ 0xABC0, 0xABE2 },
{ 0xD7B0, 0xD7C6 },
{ 0xD7CB, 0xD7FB },
{ 0xF900, 0xFA6D },
{ 0xFA70, 0xFAD9 },
{ 0xFB00, 0xFB06 },
{ 0xFB13, 0xFB17 },
{ 0xFB1F, 0xFB28 },
{ 0xFB2A, 0xFB36 },
{ 0xFB38, 0xFB3C },
{ 0xFB40, 0xFB41 },
{ 0xFB43, 0xFB44 },
{ 0xFB46, 0xFBB1 },
{ 0xFBD3, 0xFD3D },
{ 0xFD50, 0xFD8F },
{ 0xFD92, 0xFDC7 },
{ 0xFDF0, 0xFDFB },
{ 0xFE70, 0xFE74 },
{ 0xFE76, 0xFEFC },
{ 0xFF21, 0xFF3A },
{ 0xFF41, 0xFF5A },
{ 0xFF66, 0xFFBE },
{ 0xFFC2, 0xFFC7 },
{ 0xFFCA, 0xFFCF },
{ 0xFFD2, 0xFFD7 },
{ 0xFFDA, 0xFFDC },
{ 0x10000, 0x1000B },
{ 0x1000D, 0x10026 },
{ 0x10028, 0x1003A },
{ 0x1003C, 0x1003D },
{ 0x1003F, 0x1004D },
{ 0x10050, 0x1005D },
{ 0x10080, 0x100FA },
{ 0x10280, 0x1029C },
{ 0x102A0, 0x102D0 },
{ 0x10300, 0x1031F },
{ 0x10330, 0x10340 },
{ 0x10342, 0x10349 },
{ 0x10350, 0x10375 },
{ 0x10380, 0x1039D },
{ 0x103A0, 0x103C3 },
{ 0x103C8, 0x103CF },
{ 0x10400, 0x1049D },
{ 0x10500, 0x10527 },
{ 0x10530, 0x10563 },
{ 0x10600, 0x10736 },
{ 0x10740, 0x10755 },
{ 0x10760, 0x10767 },
{ 0x10800, 0x10805 },
{ 0x1080A, 0x10835 },
{ 0x10837, 0x10838 },
{ 0x1083F, 0x10855 },
{ 0x10860, 0x10876 },
{ 0x10880, 0x1089E },
{ 0x10900, 0x10915 },
{ 0x10920, 0x10939 },
{ 0x10980, 0x109B7 },
{ 0x109BE, 0x109BF },
{ 0x10A10, 0x10A13 },
{ 0x10A15, 0x10A17 },
{ 0x10A19, 0x10A33 },
{ 0x10A60, 0x10A7C },
{ 0x10A80, 0x10A9C },
{ 0x10AC0, 0x10AC7 },
{ 0x10AC9, 0x10AE4 },
{ 0x10B00, 0x10B35 },
{ 0x10B40, 0x10B55 },
{ 0x10B60, 0x10B72 },
{ 0x10B80, 0x10B91 },
{ 0x10C00, 0x10C48 },
{ 0x11003, 0x11037 },
{ 0x11083, 0x110AF },
{ 0x110D0, 0x110E8 },
{ 0x11103, 0x11126 },
{ 0x11150, 0x11172 },
{ 0x11183, 0x111B2 },
{ 0x111C1, 0x111C4 },
{ 0x11200, 0x11211 },
{ 0x11213, 0x1122B },
{ 0x112B0, 0x112DE },
{ 0x11305, 0x1130C },
{ 0x1130F, 0x11310 },
{ 0x11313, 0x11328 },
{ 0x1132A, 0x11330 },
{ 0x11332, 0x11333 },
{ 0x11335, 0x11339 },
{ 0x1135D, 0x11361 },
{ 0x11480, 0x114AF },
{ 0x114C4, 0x114C5 },
{ 0x11580, 0x115AE },
{ 0x11600, 0x1162F },
{ 0x11680, 0x116AA },
{ 0x118A0, 0x118DF },
{ 0x11AC0, 0x11AF8 },
{ 0x12000, 0x12398 },
{ 0x13000, 0x1342E },
{ 0x16800, 0x16A38 },
{ 0x16A40, 0x16A5E },
{ 0x16AD0, 0x16AED },
{ 0x16B00, 0x16B2F },
{ 0x16B40, 0x16B43 },
{ 0x16B63, 0x16B77 },
{ 0x16B7D, 0x16B8F },
{ 0x16F00, 0x16F44 },
{ 0x16F93, 0x16F9F },
{ 0x1B000, 0x1B001 },
{ 0x1BC00, 0x1BC6A },
{ 0x1BC70, 0x1BC7C },
{ 0x1BC80, 0x1BC88 },
{ 0x1BC90, 0x1BC99 },
{ 0x1D400, 0x1D454 },
{ 0x1D456, 0x1D49C },
{ 0x1D49E, 0x1D49F },
{ 0x1D4A5, 0x1D4A6 },
{ 0x1D4A9, 0x1D4AC },
{ 0x1D4AE, 0x1D4B9 },
{ 0x1D4BD, 0x1D4C3 },
{ 0x1D4C5, 0x1D505 },
{ 0x1D507, 0x1D50A },
{ 0x1D50D, 0x1D514 },
{ 0x1D516, 0x1D51C },
{ 0x1D51E, 0x1D539 },
{ 0x1D53B, 0x1D53E },
{ 0x1D540, 0x1D544 },
{ 0x1D54A, 0x1D550 },
{ 0x1D552, 0x1D6A5 },
{ 0x1D6A8, 0x1D6C0 },
{ 0x1D6C2, 0x1D6DA },
{ 0x1D6DC, 0x1D6FA },
{ 0x1D6FC, 0x1D714 },
{ 0x1D716, 0x1D734 },
{ 0x1D736, 0x1D74E },
{ 0x1D750, 0x1D76E },
{ 0x1D770, 0x1D788 },
{ 0x1D78A, 0x1D7A8 },
{ 0x1D7AA, 0x1D7C2 },
{ 0x1D7C4, 0x1D7CB },
{ 0x1E800, 0x1E8C4 },
{ 0x1EE00, 0x1EE03 },
{ 0x1EE05, 0x1EE1F },
{ 0x1EE21, 0x1EE22 },
{ 0x1EE29, 0x1EE32 },
{ 0x1EE34, 0x1EE37 },
{ 0x1EE4D, 0x1EE4F },
{ 0x1EE51, 0x1EE52 },
{ 0x1EE61, 0x1EE62 },
{ 0x1EE67, 0x1EE6A },
{ 0x1EE6C, 0x1EE72 },
{ 0x1EE74, 0x1EE77 },
{ 0x1EE79, 0x1EE7C },
{ 0x1EE80, 0x1EE89 },
{ 0x1EE8B, 0x1EE9B },
{ 0x1EEA1, 0x1EEA3 },
{ 0x1EEA5, 0x1EEA9 },
{ 0x1EEAB, 0x1EEBB },
{ 0x2F800, 0x2FA1D },
};
static Rune alpha1[] = {
0x00AA,
0x00B5,
0x00BA,
0x02EC,
0x02EE,
0x037F,
0x0386,
0x038C,
0x0559,
0x06D5,
0x06FF,
0x0710,
0x07B1,
0x07FA,
0x081A,
0x0824,
0x0828,
0x093D,
0x0950,
0x09B2,
0x09BD,
0x09CE,
0x0A5E,
0x0ABD,
0x0AD0,
0x0B3D,
0x0B71,
0x0B83,
0x0B9C,
0x0BD0,
0x0C3D,
0x0CBD,
0x0CDE,
0x0D3D,
0x0D4E,
0x0DBD,
0x0E84,
0x0E8A,
0x0E8D,
0x0EA5,
0x0EA7,
0x0EBD,
0x0EC6,
0x0F00,
0x103F,
0x1061,
0x108E,
0x10C7,
0x10CD,
0x1258,
0x12C0,
0x17D7,
0x17DC,
0x18AA,
0x1AA7,
0x1F59,
0x1F5B,
0x1F5D,
0x1FBE,
0x2071,
0x207F,
0x2102,
0x2107,
0x2115,
0x2124,
0x2126,
0x2128,
0x214E,
0x2D27,
0x2D2D,
0x2D6F,
0x2E2F,
0x3400,
0x4DB5,
0x4E00,
0x9FCC,
0xA8FB,
0xA9CF,
0xAA7A,
0xAAB1,
0xAAC0,
0xAAC2,
0xAC00,
0xD7A3,
0xFB1D,
0xFB3E,
0x10808,
0x1083C,
0x10A00,
0x11176,
0x111DA,
0x1133D,
0x114C7,
0x11644,
0x118FF,
0x16F50,
0x1D4A2,
0x1D4BB,
0x1D546,
0x1EE24,
0x1EE27,
0x1EE39,
0x1EE3B,
0x1EE42,
0x1EE47,
0x1EE49,
0x1EE4B,
0x1EE54,
0x1EE57,
0x1EE59,
0x1EE5B,
0x1EE5D,
0x1EE5F,
0x1EE64,
0x1EE7E,
0x20000,
0x2A6D6,
0x2A700,
0x2B734,
0x2B740,
0x2B81D,
};
int
isalpharune(Rune r)
{
if(bsearch(&r, alpha2, nelem(alpha2), sizeof *alpha2, &rune2cmp))
return 1;
if(bsearch(&r, alpha1, nelem(alpha1), sizeof *alpha1, &rune1cmp))
return 1;
return 0;
}

9
libutf/isblankrune.c Normal file
View File

@ -0,0 +1,9 @@
/* Automatically generated by mkrunetype.awk */
#include "../utf.h"
#include "runetype.h"
int
isblankrune(Rune r)
{
return r == ' ' || r == '\t';
}

19
libutf/iscntrlrune.c Normal file
View File

@ -0,0 +1,19 @@
/* Automatically generated by mkrunetype.awk */
#include <stdlib.h>
#include "../utf.h"
#include "runetype.h"
static Rune cntrl2[][2] = {
{ 0x0000, 0x001F },
{ 0x007F, 0x009F },
};
int
iscntrlrune(Rune r)
{
if(bsearch(&r, cntrl2, nelem(cntrl2), sizeof *cntrl2, &rune2cmp))
return 1;
return 0;
}

67
libutf/isdigitrune.c Normal file
View File

@ -0,0 +1,67 @@
/* Automatically generated by mkrunetype.awk */
#include <stdlib.h>
#include "../utf.h"
#include "runetype.h"
static Rune digit2[][2] = {
{ 0x0030, 0x0039 },
{ 0x0660, 0x0669 },
{ 0x06F0, 0x06F9 },
{ 0x07C0, 0x07C9 },
{ 0x0966, 0x096F },
{ 0x09E6, 0x09EF },
{ 0x0A66, 0x0A6F },
{ 0x0AE6, 0x0AEF },
{ 0x0B66, 0x0B6F },
{ 0x0BE6, 0x0BEF },
{ 0x0C66, 0x0C6F },
{ 0x0CE6, 0x0CEF },
{ 0x0D66, 0x0D6F },
{ 0x0DE6, 0x0DEF },
{ 0x0E50, 0x0E59 },
{ 0x0ED0, 0x0ED9 },
{ 0x0F20, 0x0F29 },
{ 0x1040, 0x1049 },
{ 0x1090, 0x1099 },
{ 0x17E0, 0x17E9 },
{ 0x1810, 0x1819 },
{ 0x1946, 0x194F },
{ 0x19D0, 0x19D9 },
{ 0x1A80, 0x1A89 },
{ 0x1A90, 0x1A99 },
{ 0x1B50, 0x1B59 },
{ 0x1BB0, 0x1BB9 },
{ 0x1C40, 0x1C49 },
{ 0x1C50, 0x1C59 },
{ 0xA620, 0xA629 },
{ 0xA8D0, 0xA8D9 },
{ 0xA900, 0xA909 },
{ 0xA9D0, 0xA9D9 },
{ 0xA9F0, 0xA9F9 },
{ 0xAA50, 0xAA59 },
{ 0xABF0, 0xABF9 },
{ 0xFF10, 0xFF19 },
{ 0x104A0, 0x104A9 },
{ 0x11066, 0x1106F },
{ 0x110F0, 0x110F9 },
{ 0x11136, 0x1113F },
{ 0x111D0, 0x111D9 },
{ 0x112F0, 0x112F9 },
{ 0x114D0, 0x114D9 },
{ 0x11650, 0x11659 },
{ 0x116C0, 0x116C9 },
{ 0x118E0, 0x118E9 },
{ 0x16A60, 0x16A69 },
{ 0x16B50, 0x16B59 },
{ 0x1D7CE, 0x1D7FF },
};
int
isdigitrune(Rune r)
{
if(bsearch(&r, digit2, nelem(digit2), sizeof *digit2, &rune2cmp))
return 1;
return 0;
}

9
libutf/isgraphrune.c Normal file
View File

@ -0,0 +1,9 @@
/* Automatically generated by mkrunetype.awk */
#include "../utf.h"
#include "runetype.h"
int
isgraphrune(Rune r)
{
return !isspacerune(r) && isprintrune(r);
}

10
libutf/isprintrune.c Normal file
View File

@ -0,0 +1,10 @@
/* Automatically generated by mkrunetype.awk */
#include "../utf.h"
#include "runetype.h"
int
isprintrune(Rune r)
{
return !iscntrlrune(r) && (r != 0x2028) && (r != 0x2029) &&
(r < 0xFFF9) && (r > 0xFFFB);
}

9
libutf/ispunctrune.c Normal file
View File

@ -0,0 +1,9 @@
/* Automatically generated by mkrunetype.awk */
#include "../utf.h"
#include "runetype.h"
int
ispunctrune(Rune r)
{
return isgraphrune(r) && !isalnumrune(r);
}

30
libutf/isspacerune.c Normal file
View File

@ -0,0 +1,30 @@
/* Automatically generated by mkrunetype.awk */
#include <stdlib.h>
#include "../utf.h"
#include "runetype.h"
static Rune space2[][2] = {
{ 0x2000, 0x200A },
{ 0x2028, 0x2029 },
};
static Rune space1[] = {
0x0020,
0x00A0,
0x1680,
0x202F,
0x205F,
0x3000,
};
int
isspacerune(Rune r)
{
if(bsearch(&r, space2, nelem(space2), sizeof *space2, &rune2cmp))
return 1;
if(bsearch(&r, space1, nelem(space1), sizeof *space1, &rune1cmp))
return 1;
return 0;
}

32
libutf/istitlerune.c Normal file
View File

@ -0,0 +1,32 @@
/* Automatically generated by mkrunetype.awk */
#include <stdlib.h>
#include "../utf.h"
#include "runetype.h"
static Rune title2[][2] = {
{ 0x1F88, 0x1F8F },
{ 0x1F98, 0x1F9F },
{ 0x1FA8, 0x1FAF },
};
static Rune title1[] = {
0x01C5,
0x01C8,
0x01CB,
0x01F2,
0x1FBC,
0x1FCC,
0x1FFC,
};
int
istitlerune(Rune r)
{
if(bsearch(&r, title2, nelem(title2), sizeof *title2, &rune2cmp))
return 1;
if(bsearch(&r, title1, nelem(title1), sizeof *title1, &rune1cmp))
return 1;
return 0;
}

9
libutf/isxdigitrune.c Normal file
View File

@ -0,0 +1,9 @@
/* Automatically generated by mkrunetype.awk */
#include "../utf.h"
#include "runetype.h"
int
isxdigitrune(Rune r)
{
return (r >= '0' && (r - '0') < 10) || (r >= 'a' && (r - 'a') < 6);
}

2893
libutf/lowerrune.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,5 @@
/* MIT/X Consortium Copyright (c) 2012 Connor Lane Smith <cls@lubutu.com>
* (c) 2015 Laslo Hunhold <dev@frign.de>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@ -18,16 +19,8 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <stdlib.h>
#include "../utf.h"
#define nelem(x) (sizeof (x) / sizeof *(x))
static int rune1cmp(const void *, const void *);
static int rune2cmp(const void *, const void *);
#include "../runetypebody.h"
int
rune1cmp(const void *v1, const void *v2)
{

26
libutf/runetype.h Normal file
View File

@ -0,0 +1,26 @@
/* MIT/X Consortium Copyright (c) 2012 Connor Lane Smith <cls@lubutu.com>
* (c) 2015 Laslo Hunhold <dev@frign.de>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#define nelem(x) (sizeof (x) / sizeof *(x))
int rune1cmp(const void *, const void *);
int rune2cmp(const void *, const void *);

2233
libutf/upperrune.c Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

16
utf.h
View File

@ -42,18 +42,18 @@ char *utfrune(const char *, Rune);
char *utfrrune(const char *, Rune);
char *utfutf(const char *, const char *);
int isalnumrune(Rune);
int isalpharune(Rune);
int islowerrune(Rune);
int isspacerune(Rune);
int isblankrune(Rune);
int iscntrlrune(Rune);
int isdigitrune(Rune);
int isgraphrune(Rune);
int islowerrune(Rune);
int isprintrune(Rune);
int ispunctrune(Rune);
int isspacerune(Rune);
int istitlerune(Rune);
int isupperrune(Rune);
int isdigitrune(Rune);
int isalnumrune(Rune);
int isblankrune(Rune);
int isprintrune(Rune);
int isgraphrune(Rune);
int ispunctrune(Rune);
int isxdigitrune(Rune);
Rune tolowerrune(Rune);