comparison dowa/d_string.c @ 1:adcfad6e86fb

Updated naming and separated out some logic within seobeo.
author June Park <parkjune1995@gmail.com>
date Wed, 24 Sep 2025 09:11:20 -0700
parents
children fff1b048dda6
comparison
equal deleted inserted replaced
0:5695ef413be0 1:adcfad6e86fb
1 #include "dowa.h"
2
3 char *Dowa_Int32ToString(uint32 int32, char *buffer)
4 {
5 sprintf(buffer, "%d", int32);
6 return buffer;
7 }
8