view dowa/d_string.c @ 59:e06bc03d9618

[Color Game] Making game with a friend.
author June Park <parkjune1995@gmail.com>
date Sat, 20 Dec 2025 10:53:13 -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;
}