(root)/
gawk-5.2.2/
test/
strtonum.awk
BEGIN {
	print strtonum("0x13")
	print strtonum("013")
	print strtonum("13")
	print strtonum(13)
}