search for statistically valid spelling rules like "i before e cept after c"
who is with me? this could be a great probject. Just need a dictionary with words counted by frequency of use in writing.
Name:
Richard Stallman2012-12-29 8:29
#include <stdio.h>
void I_BEFORE_E(void)
{
puts("EYE BEFORE EEH! EYE BEFORE EEH! *GETS HANDCUFFS AND CURLS UP TO"
"THE NEAREST AUTHORITY FIGURE");
}
void EXCEPT_IN_THE_SEA(void)
{
puts("'cause I lost my glasses in there");
}
enum {
SEE, EYE, EEH, NOONOO, DONKEYS
};
static int aner(c)
{
switch (c) {
case 'c':
case 'C':
return SEE;
case 'i':
case 'I':
return EYE;
case 'e':
case 'E':
return EEH;
default:
;
}
return NOONOO;
}