home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / lib / objcol2 / sample / test4.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-12  |  437 b   |  21 lines

  1. /* Sample of "sort.o", linked with sort.o
  2.                            By SAKU     */
  3. #include <stdio.h>
  4. #include "sort.h"
  5.  
  6. unsigned short int    data[16] = { 15, 213, 12, 12, 0, 66, 7, 5, 9, 811, 14, 3, 91, 8, 24, 10 };
  7.  
  8.  
  9. void    main()
  10. {
  11.     int        i,table[16];
  12.  
  13.     sort( SORT_SHELL, SORT_SHORT, data, 16, table );
  14.  
  15.     printf( "src res\n" );
  16.     for( i=0; i<16; i++ )
  17.         printf( "%3d %3d\n", *(data+i), *(data+table[i]) );
  18.  
  19.     return;
  20. }
  21.