Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ulltoa.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e90de7645a3a87531127e21c824df09a0e74b40 (plain)
1
2
3
#include <stdlib.h>
char* ulltoa(unsigned long long _n, char * _c, int _i)
	{ return _ui64toa (_n, _c, _i); }