mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
add itoa(), replace snprintf("%d") calls
we can save some space and still end up with a 20% faster function Change-Id: Ia58900122944b8527ef01a673afe18ea794acb41
This commit is contained in:
parent
9e61d53c7c
commit
f55fe21f66
9 changed files with 98 additions and 41 deletions
|
@ -70,4 +70,6 @@ static inline char * strmemcpy(char *dst, const char *src, size_t len)
|
|||
strmemdupa(__s, MIN(__n, __len)); })
|
||||
#endif /* strndupa */
|
||||
|
||||
char *itoa(char *buf, size_t bufsz, long int i); /* Not std */
|
||||
|
||||
#endif /* STRING_EXTRA_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue