Fix the wrong explanation for itoa return
authorjc_.kim <jc_.kim@samsung.com>
Tue, 27 Jun 2017 11:39:43 +0000 (20:39 +0900)
committerjc_.kim <jc_.kim@samsung.com>
Thu, 29 Jun 2017 23:53:23 +0000 (08:53 +0900)
itoa returns a pointer to the resulting null-terminated string,
same as parameter str.

Change-Id: I583262751a36239f70e736bbb765490f72f6c7df
Signed-off-by: jc_.kim <jc_.kim@samsung.com>
os/include/stdlib.h

index 852d698..4fcdf11 100644 (file)
@@ -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);