Home | History | Annotate | Download | only in wcstox

Lines Matching refs:shgetc

28 #include "shgetc.h"
64 while (isspace((c=shgetc(f))));
67 c = shgetc(f);
70 c = shgetc(f);
72 c = shgetc(f);
93 for (x=0; c-'0'<10U && x<=UINT_MAX/10-1; c=shgetc(f))
95 for (y=x; c-'0'<10U && y<=ULLONG_MAX/10 && 10*y<=ULLONG_MAX-(c-'0'); c=shgetc(f))
100 for (x=0; val[c]<base && x<=UINT_MAX/32; c=shgetc(f))
102 for (y=x; val[c]<base && y<=ULLONG_MAX>>bs; c=shgetc(f))
105 for (x=0; val[c]<base && x<=UINT_MAX/36-1; c=shgetc(f))
107 for (y=x; val[c]<base && y<=ULLONG_MAX/base && base*y<=ULLONG_MAX-val[c]; c=shgetc(f))
111 for (; val[c]<base; c=shgetc(f));