view dowa/d_string.c @ 56:92b097d70af4

Updated so that fzf works out of the box.
author June Park <me@mrjunejune.com>
date Tue, 16 Dec 2025 21:01:45 -0500
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;
}