home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 1.ddi / CLIBSRC.ZIP / STRXFRM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  642 b   |  33 lines

  1. /*-----------------------------------------------------------------------*
  2.  * filename - strxfrm.c
  3.  *
  4.  * function(s)
  5.  *        strxfrm - copies one string into another
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*
  9.  *      C/C++ Run Time Library - Version 5.0
  10.  *
  11.  *      Copyright (c) 1987, 1992 by Borland International
  12.  *      All Rights Reserved.
  13.  *
  14.  */
  15.  
  16.  
  17. #include <string.h>
  18.  
  19. size_t strxfrm(char *dest, const char *src, size_t n)
  20. {
  21.     int l = strlen( src );
  22.  
  23.     while( n-- && (*dest++ = *src++) != 0)
  24.         ;
  25.  
  26.     if (dest)
  27.         *(dest-1) = '\0';
  28.  
  29.     return l;
  30. }
  31.  
  32.  
  33.