add islower/isupper functions (#196)
* add islower/isupper functions * added test * more tests + bugfix * Makefile fix * rm iscase test on make clean
This commit is contained in:
committed by
GitHub
parent
08f9999a06
commit
5622a0a51b
@@ -51,6 +51,13 @@ GraphemeBreakTest.txt:
|
||||
emoji-data.txt:
|
||||
$(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://unicode.org/Public/$(UNICODE_VERSION)/ucd/emoji/emoji-data.txt
|
||||
|
||||
Uppercase.txt: DerivedCoreProperties.txt
|
||||
$(RUBY) -e 'puts File.read("DerivedCoreProperties.txt")[/# Derived Property: Uppercase.*?# Total code points:/m]' > $@
|
||||
|
||||
Lowercase.txt: DerivedCoreProperties.txt
|
||||
$(RUBY) -e 'puts File.read("DerivedCoreProperties.txt")[/# Derived Property: Lowercase.*?# Total code points:/m]' > $@
|
||||
|
||||
clean:
|
||||
rm -f UnicodeData.txt EastAsianWidth.txt GraphemeBreakProperty.txt DerivedCoreProperties.txt CompositionExclusions.txt CaseFolding.txt NormalizationTest.txt GraphemeBreakTest.txt CharWidths.txt emoji-data.txt
|
||||
rm -f Uppercase.txt Lowercase.txt
|
||||
rm -f utf8proc_data.c.new
|
||||
|
||||
Reference in New Issue
Block a user