HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
29 #include "user_config.h"
61 if(c >=
'0' && c <=
'9')
63 else if(c >=
'A' && c <=
'F')
65 else if(c >=
'a' && c <=
'f')
68 return((ret >= radix) ? -1 : ret);
99 num =
strtol(str, &endptr, base);
139 strtol(
const char *nptr,
char **endptr,
int base)
145 while(*nptr ==
' ' || *nptr ==
'\t')
153 else if(*nptr ==
'+' )
174 *endptr = (
char *) nptr;
187 strtoll(
const char *nptr,
char **endptr,
int base)
189 unsigned long long num;
193 while(*nptr ==
' ' || *nptr ==
'\t')
201 else if(*nptr ==
'+' )
222 *endptr = (
char *) nptr;
227 #ifdef __SIZEOF_INT128__
236 strto128(
const char *nptr,
char **endptr,
int base)
242 while(*nptr ==
' ' || *nptr ==
'\t')
250 else if(*nptr ==
'+' )
272 *endptr = (
char *) nptr;
318 iexp(
double num,
int exp)
374 exp10 = ((double) exp2) / (double) 3.321928095;
377 scale =
iexp((
double)10.0, exp10);
383 while(num >= (
double)10.0)
385 num /= (double) 10.0;
388 while(num < (
double) 1.0)
390 num *= (double) 10.0;
408 strtod(
const char *nptr,
char **endptr)
414 int digit, power,sign;
416 while(*nptr ==
' ' || *nptr ==
'\t' || *nptr ==
'\n')
424 else if(*nptr ==
'+')
435 digit = (*nptr -
'0');
436 num += (double) digit;
446 digit = (*nptr -
'0');
447 tmp = (double) digit;
456 if(*nptr ==
'E' || *nptr ==
'e')
459 sign = (*nptr ==
'-') ? -1 : 1;
460 if(sign == -1 || *nptr ==
'+')
466 digit = (*nptr -
'0');
467 power += (double) digit;
475 num *=
iexp(10.0, power);
479 *endptr = (
char *) nptr;
490 atof(
const char *str)
496 #endif // ifdef FLOATIO
MEMSPACE long atol(const char *str)
Convert ASCII string to number in base 10.
MEMSPACE double strtod(const char *nptr, char **endptr)
MEMSPACE long long strtoll(const char *nptr, char **endptr, int base)
Convert ASCII string to number in a given base.
MEMSPACE long strtol(const char *nptr, char **endptr, int base)
Convert ASCII string to number in a given base.
MEMSPACE double iexp(double num, int exp)
MEMSPACE double atof(const char *str)
MEMSPACE int mul10str(uint8_t *str, int size)
Fast multiply number of any size by 10.
MEMSPACE long aton(char *str, int base)
Convert ASCII string to number in a given base.
MEMSPACE int atodigit(int c, int radix)
Convert ASCII character to radix based digit , or -1.
MEMSPACE long atoh(const char *p)
Convert ASCII hex string to long integer.
MEMSPACE int atoi(const char *str)
Convert ASCII string to number in base 10.
Math IO functions, and verious conversion code with floating point support.
MEMSPACE int WEAK_ATR isdigit(int c)
test if a character is a digit
MEMSPACE double scale10(double num, int *exp)