So you have Table mapping the 26 ascii characters from the English alphabet to their corresponding morse code strings
typedef struct a_look_tab {
char table[asciiNum][MORSE_MAX+1];
} ALookTab;
and asciiNum is the 0 for a, 1 for b, and so on. how to return an index (int) that is the index of the morse char.
So what we are doing after converting a char into a number is to param ascii The ascii character to convert and return The index for the given ascii character, how do we do that?