1 2 3 4 5 6 7
|
char englishlist[26] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
char spanishlist[32] = {'a', a_accent, 'b', 'c', 'd', 'e', e_accent, 'f', 'g', 'h', 'i', i_accent, 'j', 'k', 'l', 'm', 'n', nyay, 'o', o_accent, 'p', 'q', 'r', 's', 't', 'u', u_accent, 'v', 'w', 'x', 'y', 'z'};
char germanlist[30] = {'a', a_umlaut, 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', o_umlaut, 'p', 'q', 'r', 's', sset, 't', 'u', u_umlaut, 'v', 'w', 'x', 'y', 'z'};
char * alphabet;
|