diff options
author | Dave Hylands <dhylands@gmail.com> | 2014-03-10 00:10:01 -0700 |
---|---|---|
committer | Dave Hylands <dhylands@gmail.com> | 2014-03-10 00:10:01 -0700 |
commit | ca5a241e48b0cc392a555ad3dec5d008089bfd53 (patch) | |
tree | 2543d369ab81180697aaf39040171208a93f0250 /py/format-float.h | |
parent | 0308f964a074642f0eeacec37f6cb4e1ab009b4d (diff) |
Add proper floating point printing support.
Diffstat (limited to 'py/format-float.h')
-rw-r--r-- | py/format-float.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/format-float.h b/py/format-float.h new file mode 100644 index 000000000..590fb0e91 --- /dev/null +++ b/py/format-float.h @@ -0,0 +1,3 @@ +int format_float(float f, char *buf, size_t bufSize, char fmt, int prec, char sign); + + |