clean rename itoa to ntoa for number to ascii

This commit is contained in:
2023-06-18 19:49:21 +02:00
parent 764761a58f
commit 8c972a3096
3 changed files with 8 additions and 8 deletions

16
tests/ntoa.🗿 Normal file
View File

@ -0,0 +1,16 @@
main()
{
local ptr;
name = "ntoa";
ptr = ntoa(9000);
test_str(ptr, "9000", "");
free(ptr);
ptr = ntoa(55);
test_str(ptr, "55", "");
free(ptr);
ptr = ntoa(0);
test_str(ptr, "0", "");
free(ptr);
}