diff options
author | Rob Landley <rob@landley.net> | 2013-09-03 08:30:47 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-09-03 08:30:47 -0500 |
commit | f538f420deffc242742ce2d0661a39fa9a3b5399 (patch) | |
tree | 25841579cf96612ab0f81e6d4738ac5da89ef7c4 /lib/lib.h | |
parent | 79d8bc70539b7a3d459630c97e38d3cdff77e591 (diff) | |
download | toybox-f538f420deffc242742ce2d0661a39fa9a3b5399.tar.gz |
Remove itoa/utoa, let libc do this with sprintf.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -140,10 +140,6 @@ void msleep(long miliseconds); int64_t peek(void *ptr, int size); void poke(void *ptr, uint64_t val, int size); struct string_list *find_in_path(char *path, char *filename); -void utoa_to_buf(unsigned n, char *buf, unsigned buflen); -void itoa_to_buf(int n, char *buf, unsigned buflen); -char *utoa(unsigned n); -char *itoa(int n); long atolx(char *c); int numlen(long l); int stridx(char *haystack, char needle); |