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

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

#include <stdlib.h>
#include <ctype.h>
#include "nonstdlib.h"
+ Include dependency graph for nonstdlib.cpp:

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)
 

Variables

static char num [] = "0123456789abcdefghijklmnopqrstuvwxyz"
 

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.cpp.

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.