/* Create a function that returns the ASCII value of the passed in character. */ unsigned short ctoa(char c) { return c; }