Home
last modified time | relevance | path

Searched refs:ctoint (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/cmd/dc/
H A Ddc.h52 #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)))
H A Ddc.c64 ctoint(char c) in ctoint() function
67 ctoint(unsigned char c) in ctoint()