Searched refs:ctoint (Results 1 – 2 of 2) sorted by relevance
52 #define sgetc(p) (((p)->rd == (p)->wt) ? EOF: ctoint((int)*(p)->rd++))53 #define slookc(p) (((p)->rd == (p)->wt) ? EOF: ctoint((int)*(p)->rd))54 #define sbackc(p) (((p)->rd == (p)->beg) ? EOF: ctoint((int)*(--(p)->rd)))
64 ctoint(char c) in ctoint() function67 ctoint(unsigned char c) in ctoint()