I was wondering if anyone has the following php function equivalents in Objective-C for iPhone development:
//char to int ASCII-code char c = 'a'; int ascii_code = (int)c; //int to char int i = 65; // A c = (char)i;