Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
usr
share
awk
File Content:
intdiv0.awk
# intdiv0 --- do integer division # # Arnold Robbins, arnold@skeeve.com, Public Domain # July, 2014 # # Name changed from div() to intdiv() # April, 2015 # # Changed to intdiv0() # April, 2016 function intdiv0(numerator, denominator, result) { split("", result) numerator = int(numerator) denominator = int(denominator) result["quotient"] = int(numerator / denominator) result["remainder"] = int(numerator % denominator) return 0.0 }
Edit
Download
Unzip
Chmod
Delete