diff options
Diffstat (limited to 'usr/sdk/inc')
| -rw-r--r-- | usr/sdk/inc/sdk/string.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usr/sdk/inc/sdk/string.h b/usr/sdk/inc/sdk/string.h index 36261d0..0f7ff27 100644 --- a/usr/sdk/inc/sdk/string.h +++ b/usr/sdk/inc/sdk/string.h @@ -27,4 +27,16 @@ USIZE strlen(const char *str); */ void *memcpy(void *dest, const void *src, USIZE count); +/* + * Convert a given value into a string based on a + * specific radix/base + * + * @value: Value to convert + * @buf: Buffer to copy to + * @base: Radix + * + * Returns `buf' on success + */ +char *itoa(QUAD value, char *buf, int base); + #endif /* !_SDK_STRING_H_ */ |
