PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
Functions
nonstdlib.h File Reference

Provides common C functions that are not part of stdlib.h but the Arduino depends upon. More...

+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void strreverse (char *begin, char *end)
 
void itoa (int value, char *str, int base)
 
void utoa (unsigned int value, char *str, int base)
 
void ltoa (long value, char *str, int base)
 
void ultoa (unsigned long value, char *str, int base)
 

Detailed Description

Provides common C functions that are not part of stdlib.h but the Arduino depends upon.

Copyright (c) 2013 by Martin Heermance MIT Licensed

Definition in file nonstdlib.h.

Function Documentation

◆ strreverse()

void strreverse ( char begin,
char end 
)

Ansi C "itoa" based on Kernighan & Ritchie's "Ansi C" with slight modification to optimize for specific architecture:

Definition at line 21 of file nonstdlib.cpp.