home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / CLIB1.ZIP / STRCOLL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  985 b   |  24 lines

  1. /*-----------------------------------------------------------------------*
  2.  * filename - strcoll.c
  3.  *
  4.  * function(s)
  5.  *        strcoll - compares two strings
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*[]------------------------------------------------------------[]*/
  9. /*|                                                              |*/
  10. /*|     Turbo C Run Time Library - Version 3.0                   |*/
  11. /*|                                                              |*/
  12. /*|                                                              |*/
  13. /*|     Copyright (c) 1987,1988,1990 by Borland International    |*/
  14. /*|     All Rights Reserved.                                     |*/
  15. /*|                                                              |*/
  16. /*[]------------------------------------------------------------[]*/
  17.  
  18. #include <string.h>
  19.  
  20. int strcoll( const char *s1, const char *s2 )
  21.   {
  22.   return( strcmp( s1, s2 ) );
  23.   }
  24.