Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/dc/
H A Ddc.h50 #define sgetc(p) (((p)->rd == (p)->wt) ? EOF: ctoint((int)*(p)->rd++))
51 #define slookc(p) (((p)->rd == (p)->wt) ? EOF: ctoint((int)*(p)->rd))
52 #define sbackc(p) (((p)->rd == (p)->beg) ? EOF: ctoint((int)*(--(p)->rd)))
H A Ddc.c62 ctoint(char c) in ctoint() function
65 ctoint(unsigned char c) in ctoint()