libkernaux/include/kernaux/itoa.h

15 lines
185 B
C

#ifndef KERNAUX_INCLUDED_ITOA
#define KERNAUX_INCLUDED_ITOA
#ifdef __cplusplus
extern "C" {
#endif
void kernaux_itoa(int d, char *buf, int base);
#ifdef __cplusplus
}
#endif
#endif