CSLIB
Cyno Sort Library
Version 1.00

Freeware. 04-02-1996

Copyright (C) 1994-1996 by Chieh Cheng. All Rights Reserved.

This library is a sort routine library for the HP 48. It includes
various routines to accomplish tasks that may be used in your
programs. It is released in library form, so programs using the
library do not need to include the routines in their own
directories. It saves memory when a number of programs require
the same routines.

To install the library, upload CB.LIB onto your HP 48, recall it
to the stack, store it into one of the ports, turn your calculator
off, and then turn it back on. CB.LIB may be deleted from your
calculator afterward.

This library may be distributed freely alone or along with your
own programs as long as no modification are made to the library
it self. You may charge a fee for your software, but not for this
library.

The most current version of this library may be obtained from me
at one of the following:

Chieh Cheng

17914 Florwood Avenue
Torrance, CA. 90504-3847

chieh@eecs.ukans.edu

http://falcon.cc.ukans.edu/~mothball/

--------------------------------------------------------------------

Command Reference

BUBBLESORT

  Sort a list by ascending order using bubble sort algorithm.
  User-RPL

              { unordered } -> { ordered }

CSLVER

  Returns the name and version of this library. User-RPL

              -> "CSLIB"
                 "Cyno Sort Library"
                 "1.00"
                 "Copyright (C) 1994 by Chieh Cheng. All Rights Reserved."

SORT

  Sort a list by ascending order. This command simply calls
  another sort routine. Currently, it calls BUBBLESORT. It
  is included so you may use this command in your program.
  When CSLIB is updated with newer and better sort algorithm,
  SORT will call it directly so you will not need to modify
  your program. User-RPL

              { unordered } -> { ordered }
