hos/kernel/lang/conv.h

17 lines
272 B
C

// conv.h
// Author: Josh Holtrop
// Date: 08/02/04
#ifndef __HOS_CONV__
#define __HOS_CONV__ __HOS_CONV__
#include "hos_defines.h"
int bcdtoa(u32_t bcd, char *buf);
int itox(u32_t num, char *buf);
int itoa(int num, char *buf);
int utoa(u32_t num, char *buf);
#endif