simple english test

This commit is contained in:
2024-04-05 11:13:08 -07:00
parent 0408b8d499
commit a415fba3e9
5 changed files with 64 additions and 0 deletions

14
docs/parsing.md Normal file
View File

@ -0,0 +1,14 @@
# parsing
String parsing tools
## Functions
### simple_english_scoring
Scores a string based on a simple ETAOIN SHRDLU scale. A simple, somewhat accurate way to determine if a string is
English.
```c
int simple_english_scoring(const char *s);
```