diff options
author | Denis Vlasenko | 2006-11-05 00:44:39 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-05 00:44:39 +0000 |
commit | aae0311356b4458e3a62fb19af656e00323e3bf1 (patch) | |
tree | 95ef467494c3178ffb308b95f8743886d9c9a5ae /include/libbb.h | |
parent | 459e4d6cf77940977a064edab60c7162731554fb (diff) | |
download | busybox-aae0311356b4458e3a62fb19af656e00323e3bf1.zip busybox-aae0311356b4458e3a62fb19af656e00323e3bf1.tar.gz |
smart_ulltoa5: make available in libbb
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6074331..8c1d784 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -278,6 +278,7 @@ extern FILE *fopen_or_warn(const char *filename, const char *mode); extern FILE *fopen_or_warn_stdin(const char *filename); +extern void smart_ulltoa5(unsigned long long ul, char buf[5]); extern void utoa_to_buf(unsigned n, char *buf, unsigned buflen); extern char *utoa(unsigned n); extern void itoa_to_buf(int n, char *buf, unsigned buflen); |