Files
Upsilon/bootloader/itoa.h

11 lines
223 B
C++

#ifndef _BOOTLOADER_ITOA_H_
#define _BOOTLOADER_ITOA_H_
namespace Bootloader {
class Utility {
public:
static char * itoa(int value, char * result, int base);
};
}
#endif // _BOOTLOADER_ITOA_H_