diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-25 19:48:11 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-25 19:48:11 +0200 |
commit | 271c0a2c9a4e3000684c2c61c926f2011aba6a2c (patch) | |
tree | cb33440a07f1058f8ed6d949131a95c5c0f42fe2 /doc/gawk.texi | |
parent | 521679e82cba143a0ac852cc7a246dea4d19cc56 (diff) | |
parent | 6c93e97d0f76cb688543943f64f6154be3927de5 (diff) | |
download | egawk-271c0a2c9a4e3000684c2c61c926f2011aba6a2c.tar.gz egawk-271c0a2c9a4e3000684c2c61c926f2011aba6a2c.tar.bz2 egawk-271c0a2c9a4e3000684c2c61c926f2011aba6a2c.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index e6817caa..e46a12c1 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -37003,31 +37003,27 @@ project provides a number of @command{gawk} extensions, including one for processing XML files. This is the evolution of the original @command{xgawk} (XML @command{gawk}) project. -As of this writing, there are seven extensions: +There are a number of extensions. Some of the more interesting ones are: @itemize @value{BULLET} @item -@code{errno} extension +@code{abort} extension. It allows you to exit immediately from your +@command{awk} program without running the @code{END} rules. @item -GD graphics library extension +@code{json} extension. +This serializes a multidimensional array into a JSON string, and +can deserialize a JSON string into a @command{gawk} array. +This extension is interesting since it is written in C++ instead of C. @item -MPFR library extension -(this provides access to a number of MPFR functions that @command{gawk}'s -native MPFR support does not) +MPFR library extension. +This provides access to a number of MPFR functions that @command{gawk}'s +native MPFR support does not. @item -PDF extension - -@item -PostgreSQL extension - -@item -Redis extension - -@item -Select extension +Select extension. It provides functionality based on the +@code{select()} system call. @item XML parser extension, using the @uref{https://expat.sourceforge.net, Expat} @@ -37043,6 +37039,10 @@ code control system. The command is as follows: git clone git://git.code.sf.net/p/gawkextlib/code gawkextlib-code @end example +@cindex RapidJson JSON parser library +You will need to have the @uref{http://www.rapidjson.org, RapidJson} +JSON parser library installed in order to build and use the @code{json} extension. + @cindex Expat XML parser library You will need to have the @uref{https://expat.sourceforge.net, Expat} XML parser library installed in order to build and use the XML extension. |