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:
patacongo
2013-03-14 18:30:06 +00:00
parent ca7e585ab7
commit d960ca3b8d
9 changed files with 159 additions and 97 deletions
+5 -1
View File
@@ -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);