From f538f420deffc242742ce2d0661a39fa9a3b5399 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 3 Sep 2013 08:30:47 -0500 Subject: Remove itoa/utoa, let libc do this with sprintf. --- lib/lib.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lib/lib.h') diff --git a/lib/lib.h b/lib/lib.h index 2294a5bf..14e14e91 100644 --- a/lib/lib.h +++ b/lib/lib.h @@ -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); -- cgit v1.2.3