diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-27 06:01:05 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-27 06:01:05 +0200 |
commit | 6994c5d1fc086915699a04bba84596c6fbf488da (patch) | |
tree | 4a95fc034b2eb36dc7b5ed9a67e0f46fb6fc2fd5 /awklib/eg/lib/quicksort.awk | |
parent | c40640f98379cbe112277033e3a8ab4caaa35ab8 (diff) | |
download | egawk-6994c5d1fc086915699a04bba84596c6fbf488da.tar.gz egawk-6994c5d1fc086915699a04bba84596c6fbf488da.tar.bz2 egawk-6994c5d1fc086915699a04bba84596c6fbf488da.zip |
Files regenerated after previous doc update.
Diffstat (limited to 'awklib/eg/lib/quicksort.awk')
-rw-r--r-- | awklib/eg/lib/quicksort.awk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awklib/eg/lib/quicksort.awk b/awklib/eg/lib/quicksort.awk index 7a635d6f..43357ac6 100644 --- a/awklib/eg/lib/quicksort.awk +++ b/awklib/eg/lib/quicksort.awk @@ -1,8 +1,9 @@ # quicksort.awk --- Quicksort algorithm, with user-supplied # comparison function # -# Arnold Robbins, arnoldskeeve.com, Public Domain +# Arnold Robbins, arnold@skeeve.com, Public Domain # January 2009 + # quicksort --- C.A.R. Hoare's quick sort algorithm. See Wikipedia # or almost any algorithms or computer science text # |