From: jc_.kim Date: Tue, 27 Jun 2017 11:39:43 +0000 (+0900) Subject: Fix the wrong explanation for itoa return X-Git-Tag: 1.1_Public_Release~477^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13367fb332a3ef55b0920e4790620bdb2348e35e;p=rtos%2Ftinyara.git 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 --- 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);