diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-01 21:49:54 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-01 21:49:54 +0200 |
commit | 4903b6de82f1ac1318b86fe27e71fea17bbaa9fc (patch) | |
tree | 8928e707ea3a36ab1b70c736df460144be790dd4 /awklib/eg | |
parent | 545cc9691e3d6479053684815d23e6553a7d0a95 (diff) | |
parent | ec0a8d6c8ed3855b440aeb90b92088115212fb78 (diff) | |
download | egawk-4903b6de82f1ac1318b86fe27e71fea17bbaa9fc.tar.gz egawk-4903b6de82f1ac1318b86fe27e71fea17bbaa9fc.tar.bz2 egawk-4903b6de82f1ac1318b86fe27e71fea17bbaa9fc.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'awklib/eg')
-rw-r--r-- | awklib/eg/lib/quicksort.awk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/awklib/eg/lib/quicksort.awk b/awklib/eg/lib/quicksort.awk index 3ba2d6e3..e0ed8bc7 100644 --- a/awklib/eg/lib/quicksort.awk +++ b/awklib/eg/lib/quicksort.awk @@ -4,8 +4,9 @@ # 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 + +# quicksort --- C.A.R. Hoare's quicksort algorithm. See Wikipedia +# or almost any algorithms or computer science text. # # Adapted from K&R-II, page 110 |