HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
n2a.c
Go to the documentation of this file.
1 
27 #ifdef PRINTF_TEST
28 
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <stdint.h>
32 #include <stdarg.h>
33 #include <string.h>
34 #include <math.h>
35 
36 #include "mathio.h"
37 
38 void test10(long long max)
39 {
40  long long val;
41  long long s;
42  printf("testing mul10str() function: (%lld) values\n", max);
43  for(val=0;val<max;++val)
44  {
45  s = val;
46  mul10str((uint8_t *) &s, sizeof(s));
47  if(s != (val * 10))
48  printf("%lld * 10 = %lld, != %lld\n", val, (val * 10), s);
49  }
50  printf("Done %lld tests\n\n", val);
51 }
52 
53 
54 int main(int argc, char *argv[])
55 {
56 
57  int len;
58  int size;
59  int sign_ch;
60  char line[1024];
61  char numresult[1024];
62  long long val;
63  __int128_t val2;
64 
65  printf("sizeof(long) = %d\n", (int) sizeof(long));
66  printf("sizeof(long long) = %d\n", (int) sizeof(long long));
67  printf("sizeof(val) = %d\n", (int) sizeof(val));
68  printf("sizeof(__uint128_t) = %d\n", (int) sizeof(__uint128_t));
69  printf("sizeof( intmax_t ) == %d\n", (int) sizeof( intmax_t ));
70 
71  test10(1000000LL);
72 
73  while(1)
74  {
75  printf("Enter a number or ENTER to quit:");
76  fgets(line, 1020,stdin);
77  len = strlen(line);
78  while(len)
79  {
80  --len;
81  if(line[len] < ' ')
82  line[len] = 0;
83  }
84  if(!*line)
85  break;
86  sign_ch = 0;
87  val2 = strto128(line, NULL, 10);
88  if(val2 < (__int128_t) 0)
89  {
90  sign_ch = '-';
91  val2 = -val2;
92  }
93  size = bin2num(numresult, 1022, 1, 10, (uint8_t *) &val2, sizeof(val2), sign_ch);
94 //dump(numresult,size);
95  printf("numresult[%s]\n",numresult);
96  }
97 }
98 #endif
printf
MEMSPACE int printf(const char *format,...)
stdin
#define stdin
define stdin, stdout and stderr
Definition: posix.h:273
fgets
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:432
mul10str
MEMSPACE int mul10str(uint8_t *str, int size)
Fast multiply number of any size by 10.
Definition: mathio.c:110
NULL
#define NULL
Definition: user_config.h:85
strlen
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Definition: stringsup.c:144
main
int main(void)
main() for gpib project
Definition: main.c:507
mathio.h
Math IO functions, and verious conversion code with floating point support.
_printf_t::len
int len
Definition: mathio.h:84
bin2num
MEMSPACE int bin2num(uint8_t *str, int strmax, int nummin, int base, uint8_t *nump, int numsize, int sign_ch)
Convert an unsigned number (numsize bytes in size) to ASCII in specified base Notes: No limit except ...
Definition: printf.c:143