Mercurial
view dowa/d_string.c @ 49:2b11e0449042
[React Game] 2048 game.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sat, 13 Dec 2025 14:24:20 -0800 |
| parents | adcfad6e86fb |
| children | fff1b048dda6 |
line wrap: on
line source
#include "dowa.h" char *Dowa_Int32ToString(uint32 int32, char *buffer) { sprintf(buffer, "%d", int32); return buffer; }