mirror of
https://github.com/apache/nuttx.git
synced 2026-05-22 22:20:01 +08:00
itoa() from Ryan Sundberg
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5741 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
+5
-1
@@ -1,7 +1,7 @@
|
||||
/****************************************************************************
|
||||
* include/stdlib.h
|
||||
*
|
||||
* Copyright (C) 2007-2012 Gregory Nutt. All rights reserved.
|
||||
* Copyright (C) 2007-2013 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
@@ -157,6 +157,10 @@ double_t strtod(const char *, char **);
|
||||
#endif
|
||||
#define atof(nptr) strtod((nptr), NULL)
|
||||
|
||||
/* Binary to string conversions */
|
||||
|
||||
char *itoa(int value, char *str, int base);
|
||||
|
||||
/* Memory Management */
|
||||
|
||||
FAR void *malloc(size_t);
|
||||
|
||||
Reference in New Issue
Block a user