home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / smarts / cdll / cdll.h < prev    next >
Encoding:
Text File  |  1996-02-21  |  832 b   |  21 lines

  1. --------------------------------------------------------------------------------
  2. --
  3. -- COPYRIGHT:
  4. --   IBM WorkFrame - Project Smarts
  5. --   (C) Copyright International Business Machines Corporation 1996
  6. --   Licensed Material - Program-Property of IBM - All Rights Reserved.
  7. --   US Government Users Restricted Rights - Use, duplication, or disclosure
  8. --   restricted by GSA ADP Schedule Contract with IBM Corp.
  9. --
  10. --------------------------------------------------------------------------------
  11. <include prologc.tde>
  12.  
  13. #pragma library("$FILE_NAME:tolower$.lib")
  14.  
  15. #include <stddef.h>
  16.  
  17. extern void list( int array[], size_t nNumElements );
  18. extern void bubble( int array[], size_t nNumElements );
  19. extern void insertion( int array[], size_t nNumElements );
  20. extern void selection( int array[], size_t nNumElements );
  21.