add: signed number

This commit is contained in:
2023-06-18 20:25:15 +02:00
parent 0a152b9bef
commit 57e78cb70a
4 changed files with 44 additions and 11 deletions

6
src/putnum_s.🗿 Normal file
View File

@ -0,0 +1,6 @@
putnum_s(num_s)
{
local str = ntoa_s(num_s);
putstr(str);
free(str);
}