diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-27 06:03:55 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-27 06:03:55 +0200 |
commit | 8924decac2ae2a37f30c6a688e671d2b32d5ff89 (patch) | |
tree | e59f806c0a72686f412aa200a4ea476b33579303 /awklib/eg/lib | |
parent | 7a05fe38d3e7556eb94f694173b745522878e919 (diff) | |
parent | d80438ac6fef9137ab0450f02cd507d422aa9c32 (diff) | |
download | egawk-8924decac2ae2a37f30c6a688e671d2b32d5ff89.tar.gz egawk-8924decac2ae2a37f30c6a688e671d2b32d5ff89.tar.bz2 egawk-8924decac2ae2a37f30c6a688e671d2b32d5ff89.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'awklib/eg/lib')
-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 # |