14 lines
164 B
C
14 lines
164 B
C
#include "../main.h"
|
|
#define shit 0
|
|
/**
|
|
* main - check if this works
|
|
*/
|
|
int main(void)
|
|
{
|
|
char *str;
|
|
|
|
str = _itoa(10, 2);
|
|
_printf("%s", str);
|
|
return (shit);
|
|
}
|