Description: An Eng-Viet dictionary was written in C. It take an text file as the word-meaning source. It have many built-in functions. It can run on any environment which already have GCC. You can customize your own dictionary by add,delete or modify word-meaning.
Function:
- auto suggest(using both prefix tree and soundex) .
- backup, restore dictionary.
- add, delete, modify word.
- etc ... (will be added in future)
How to compile:
First, you need to install GTK 3 on your computer. If you are using Linux, it may have been installed on your device. If you are using Window, try install MSYS2.
Open this app folder, then open terminal. On terminal, we will type this command to compile this application:
gcc main_cmt.c $(pkg-config --cflags --libs gtk+-3.0) -o test_app libbt.a libfdr.a
with test_app is the name of application that you want.
Note: during compile, you may have some warnings due to conflit of definitions of TRUE/FALSE in libraries we used. it does not affect the program so don't worry.
Demo pictures