From 13367fb332a3ef55b0920e4790620bdb2348e35e Mon Sep 17 00:00:00 2001 From: "jc_.kim" Date: Tue, 27 Jun 2017 20:39:43 +0900 Subject: [PATCH] Fix the wrong explanation for itoa return itoa returns a pointer to the resulting null-terminated string, same as parameter str. Change-Id: I583262751a36239f70e736bbb765490f72f6c7df Signed-off-by: jc_.kim --- os/include/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/include/stdlib.h b/os/include/stdlib.h index 852d698..4fcdf11 100644 --- a/os/include/stdlib.h +++ b/os/include/stdlib.h @@ -350,7 +350,7 @@ double_t strtod(const char *, char **); * @param[in] value Integer value * @param[out] str String where store the result * @param[in] base Numerical base - * @return On success, 0 is returned. On failure, none-zero is returned. + * @return A pointer to the resulting null-terminated string, same as parameter str. * @since Tizen RT v1.0 */ char *itoa(int value, char *str, int base); -- 2.7.4