/* ANY-LICENSE V1.0 ---------------- You can use these files under any license approved by the Open Source Initiative, preferrably one of the popular licenses, as long as the license you choose is compatible to the dependencies of these files. See http://www.opensource.org/licenses/ for a list of approved licenses. Author: Martin Furter Project: Tins AVR Lib Repository: http://repos.borg.ch/projects/tins_avr_lib/trunk Copyright: 2015 */ #ifndef TAL_STRING_H #define TAL_STRING_H /** \defgroup String String routines @{ */ #include /** * Converts the given unsigned 8-bit integer to string. * * This function always stores 3 bytes of data at the given address. * * @param vb An 8-bit value. * @param str String. */ void uint8_to_string( uint8_t vb, char* str ); /** * Converts the given unsigned 16-bit integer to string. * * This function always stores 5 bytes of data at the given address. * * @param v A 16-bit value. * @param str String. */ void uint16_to_string( uint16_t v, char* str ); /// @} #endif // TAL_STRING_H