Small bitmap-library to use with monocrome displays.

TinyHelper.h

Committer:
glx
Date:
2017-08-02
Revision:
1:e52881eae197
Child:
3:457eaa2c6ed5

File content as of revision 1:e52881eae197:

#ifndef TINYHELPER_H_
#define TINYHELPER_H_
//Helper-functions to convert an int to a displayable char[]

void IntToChar(char *CharBuffer, int Number); //Only works for positive numbers

void IntToChar(char *CharBuffer, int Number, char Digits); //Only works for positive numbers, adds leading 0s to numbers

void CombineChars(char *Destination, char *Source); //Combines two char[]

#endif