home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / lib / objcol2 / sort.h < prev    next >
Encoding:
Text File  |  1995-08-02  |  241 b   |  13 lines

  1. void    sort( int sorttype, int argtype, void *data, int n, int *retlank );
  2.  
  3. /* sorttype */
  4. #define SORT_BUBBLE    1
  5. #define SORT_SHELL    2
  6.  
  7. /* argtype */
  8. #define SORT_CHAR    1
  9. #define SORT_SHORT    2
  10. #define SORT_LONG    3
  11. #define    SORT_STR    4
  12.  
  13.