Mercurial
view dowa/d_string.c @ 37:fb9bcd3145cb
[ReactGames] Few games I made using react just to practice few things.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 01 Dec 2025 20:22:47 -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; }