diff options
author | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2014-07-18 14:26:09 +0200 |
---|---|---|
committer | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2014-07-18 14:26:09 +0200 |
commit | a3789a72120e0e35d4db309215f87695a256b033 (patch) | |
tree | 86dc93b31b8a83fa8662f6f827df658a85796048 /doc/gawk.1 | |
parent | 88cdccf6bceb2078895fec825f0b776487197c78 (diff) | |
parent | df2eaea6a92c7d89d604d0a4e885d064678ce3ed (diff) | |
download | egawk-a3789a72120e0e35d4db309215f87695a256b033.tar.gz egawk-a3789a72120e0e35d4db309215f87695a256b033.tar.bz2 egawk-a3789a72120e0e35d4db309215f87695a256b033.zip |
Merge remote-tracking branch 'origin/master' into cmake
Diffstat (limited to 'doc/gawk.1')
-rw-r--r-- | doc/gawk.1 | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -13,7 +13,7 @@ . if \w'\(rq' .ds rq "\(rq . \} .\} -.TH GAWK 1 "Apr 17 2014" "Free Software Foundation" "Utility Commands" +.TH GAWK 1 "Jul 10 2014" "Free Software Foundation" "Utility Commands" .SH NAME gawk \- pattern scanning and processing language .SH SYNOPSIS @@ -2629,6 +2629,23 @@ Return the cosine of .IR expr , which is in radians. .TP +.BI div( num ", " denom ", " result ) +Truncate +.I num +and +.I denom +to integers. Return the quotient of +.I num +divided by +.I denom +in \fIresult\fB["quotient"]\fR +and the remainder in +in \fIresult\fB["remainder"]\fR. +This is a +.I gawk +extension, primarily of value when working with +arbitrarily large integers. +.TP .BI exp( expr ) The exponential function. .TP |