PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
nonstdlib.h
Go to the documentation of this file.
1 
10 #ifndef _NONSTDLIB_H
11 #define _NONSTDLIB_H
12 
13 #ifdef __cplusplus
14 extern "C"{
15 #endif
16 
17 void strreverse(char* begin, char* end);
18 
19 void itoa(int value, char* str, int base);
20 
21 void utoa(unsigned int value, char* str, int base);
22 
23 void ltoa(long value, char* str, int base);
24 
25 void ultoa(unsigned long value, char * str, int base);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif
32 // _NONSTDLIB_H
strreverse
void strreverse(char *begin, char *end)
Definition: nonstdlib.cpp:21