comparison xml.c @ 70:cee55c8365e9 default tip

fix
author Kazuma
date Thu, 19 May 2016 18:52:26 +0900
parents 435ac1cdb64e
children
comparison
equal deleted inserted replaced
69:1c57e38fb9b5 70:cee55c8365e9
26 } 26 }
27 27
28 28
29 static inline char *pickup_exponent(int *exp, char *cont) 29 static inline char *pickup_exponent(int *exp, char *cont)
30 { 30 {
31 int n,value=0,shift=10; 31 int n,value=0;
32 float shift = 10;
32 33
33 if (*cont == ',' || *cont == '\n') return(NULL); 34 if (*cont == ',' || *cont == '\n') return(NULL);
34 35
35 for (;*cont != ',' && *cont != '\n' && *cont != '\t';cont++) 36 for (;*cont != ',' && *cont != '\n' && *cont != '\t';cont++)
36 { 37 {