Fix implementation of lwip_itoa to take more parameters

This commit is contained in:
Dirk Ziegelmeier
2016-09-28 22:05:18 +02:00
parent 837b7b3f98
commit 4144d54642
2 changed files with 7 additions and 6 deletions

View File

@@ -139,7 +139,7 @@ u32_t lwip_ntohl(u32_t x);
* in your application, too.
*/
#ifndef lwip_itoa
void lwip_itoa(int value, char* result);
void lwip_itoa(char* result, size_t bufsize, int number);
#endif
#ifndef lwip_strnicmp
int lwip_strnicmp(const char* str1, const char* str2, size_t len);