Searched refs:dotchar (Results 1 – 9 of 9) sorted by relevance
120 static int dotchar(char *), unreadable(char *), sys(char *), dofort(char *);290 switch(c = dotchar(infname = argv[i]) ) { in main()705 dotchar(char *s) in dotchar() function
791 const char *dotchar=NULL; /* where dot was found [NULL if none] */ in decFloatFromString() local817 if (dotchar!=NULL) break; /* not first '.' */ in decFloatFromString()818 dotchar=c; /* record offset into decimal part */ in decFloatFromString()870 if (dotchar!=NULL) { /* had a '.' */ in decFloatFromString()873 exp-=(Int)(clast-dotchar); /* adjust exponent */ in decFloatFromString()889 if (dotchar!=NULL) { /* a dot to worry about */ in decFloatFromString()
498 const char *dotchar=NULL; /* where dot was found */ in decNumberFromString() local521 if (*c=='.' && dotchar==NULL) { /* first '.' */ in decNumberFromString()522 dotchar=c; /* record offset into decimal part */ in decNumberFromString()546 if (dotchar!=NULL) break; /* .. unless had a dot */ in decNumberFromString()645 if (dotchar!=NULL && dotchar<last) /* non-trailing '.' found? */ in decNumberFromString()646 exponent-=(last-dotchar); /* adjust exponent */ in decNumberFromString()