- Timestamp:
- Aug 23, 2012, 9:46:37 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20120805/Ohana/src/opihi/cmd.basic/fprintf.c
r29540 r34339 45 45 case 'F': 46 46 case 'G': 47 sprintf (tmp, fmt, atof(argv[i]));47 sprintf (tmp, fmt, strtod (argv[i], NULL)); 48 48 break; 49 49 case 's': … … 57 57 case 'x': 58 58 case 'X': 59 sprintf (tmp, fmt, atoi(argv[i]));59 sprintf (tmp, fmt, strtol(argv[i], NULL, 0)); 60 60 break; 61 61 default:
Note:
See TracChangeset
for help on using the changeset viewer.
