timesynk/helper.h

10 lines
184 B
C

#ifndef HELPER_H
#define HELPER_H
/**
* C++ version 0.4 char* style "itoa":
* Written by Lukás Chmela
* Released under GPLv3.
*/
char* itoa(int value, char* result, int base);
#endif