├── ReadMe.txt ├── dict ├── friso.lex.ini ├── lex-admin.lex ├── lex-chars.lex ├── lex-cn-mz.lex ├── lex-cn-place.lex ├── lex-company.lex ├── lex-dname-1.lex ├── lex-dname-2.lex ├── lex-en-pun.lex ├── lex-festival.lex ├── lex-flname.lex ├── lex-food.lex ├── lex-lang.lex ├── lex-lna.lex ├── lex-lname.lex ├── lex-main.lex ├── lex-mixed.lex ├── lex-nation.lex ├── lex-net.lex ├── lex-org.lex ├── lex-sname.lex └── lex-units.lex ├── example ├── tst-array.c ├── tst-friso.c ├── tst-hash.c ├── tst-lex.c ├── tst-link.c └── tst-string.c ├── friso.ini ├── license.txt └── src ├── Makefile ├── fmem.c ├── friso.c ├── friso.h ├── friso_API.h ├── friso_array.c ├── friso_hash.c ├── friso_lexicon.c ├── friso_link.c └── friso_string.c /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /dict/friso.lex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/friso.lex.ini -------------------------------------------------------------------------------- /dict/lex-admin.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-admin.lex -------------------------------------------------------------------------------- /dict/lex-chars.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-chars.lex -------------------------------------------------------------------------------- /dict/lex-cn-mz.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-cn-mz.lex -------------------------------------------------------------------------------- /dict/lex-cn-place.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-cn-place.lex -------------------------------------------------------------------------------- /dict/lex-company.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-company.lex -------------------------------------------------------------------------------- /dict/lex-dname-1.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-dname-1.lex -------------------------------------------------------------------------------- /dict/lex-dname-2.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-dname-2.lex -------------------------------------------------------------------------------- /dict/lex-en-pun.lex: -------------------------------------------------------------------------------- 1 | EN_PUN_WORDS 2 | #英文和标点组合成的词,英文字母统一使用小写。 3 | c++ 4 | g++ 5 | c# 6 | -------------------------------------------------------------------------------- /dict/lex-festival.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-festival.lex -------------------------------------------------------------------------------- /dict/lex-flname.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-flname.lex -------------------------------------------------------------------------------- /dict/lex-food.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-food.lex -------------------------------------------------------------------------------- /dict/lex-lang.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-lang.lex -------------------------------------------------------------------------------- /dict/lex-lna.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-lna.lex -------------------------------------------------------------------------------- /dict/lex-lname.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-lname.lex -------------------------------------------------------------------------------- /dict/lex-main.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-main.lex -------------------------------------------------------------------------------- /dict/lex-mixed.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-mixed.lex -------------------------------------------------------------------------------- /dict/lex-nation.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-nation.lex -------------------------------------------------------------------------------- /dict/lex-net.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-net.lex -------------------------------------------------------------------------------- /dict/lex-org.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-org.lex -------------------------------------------------------------------------------- /dict/lex-sname.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-sname.lex -------------------------------------------------------------------------------- /dict/lex-units.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/dict/lex-units.lex -------------------------------------------------------------------------------- /example/tst-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/example/tst-array.c -------------------------------------------------------------------------------- /example/tst-friso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/example/tst-friso.c -------------------------------------------------------------------------------- /example/tst-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/example/tst-hash.c -------------------------------------------------------------------------------- /example/tst-lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/example/tst-lex.c -------------------------------------------------------------------------------- /example/tst-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/example/tst-link.c -------------------------------------------------------------------------------- /example/tst-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/example/tst-string.c -------------------------------------------------------------------------------- /friso.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/friso.ini -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Apache License 2.0 2 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/fmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/fmem.c -------------------------------------------------------------------------------- /src/friso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso.c -------------------------------------------------------------------------------- /src/friso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso.h -------------------------------------------------------------------------------- /src/friso_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso_API.h -------------------------------------------------------------------------------- /src/friso_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso_array.c -------------------------------------------------------------------------------- /src/friso_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso_hash.c -------------------------------------------------------------------------------- /src/friso_lexicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso_lexicon.c -------------------------------------------------------------------------------- /src/friso_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso_link.c -------------------------------------------------------------------------------- /src/friso_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhigangc/friso/HEAD/src/friso_string.c --------------------------------------------------------------------------------