Spell Checker
v1.0
맞춤법 검사를 위한 간단하고 효율적인 C 라이브러리
1.0
세게 때리다:
./speller [dictionary] text
명령줄:
./speller.exe [dictionary] text
./speller
또는 ./speller.exe
: 출력 파일 이름
[dictionary]
: 사전 파일 (선택)
text
: 확인할 텍스트 파일
0
성공적으로 실행됨
1
잘못된 인수가 제공되었습니다.
2
메모리에서 사전을 로드/언로드하지 못했습니다.
3
텍스트 파일을 열지 못했습니다(PATH 지정).
파일 위치: src/include/Dictionary.h
포함: #include "include/Dictionary.h"
bool check(const char* word)
bool load(const char* dictionary)
unsigned int size(void)
bool unload(void)