Files @ 91fbdc7bc1b8
Branch filter:

Location: therm/stringhelpers.h

Ethan Zonca
Moved itoa functions to stringhelpers
1
2
3
4
5
6
7
#ifndef STRINGHELPERS_H 
#define STRINGHELPERS_H

char* itoa(int16_t i, char b[]);
char* itoa_fp(int16_t i, uint8_t frac, char b[]);

#endif