home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------*
- * filename - strxfrm.c
- *
- * function(s)
- * strxfrm - copies one string into another
- *-----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C Run Time Library - Version 3.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1987,1988,1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- #include <string.h>
-
- size_t strxfrm( char *dest, const char *src, size_t n )
- {
- int l = strlen( src );
-
- while( n-- )
- {
- *dest++ = *src++;
-
- if( *src == '\0' ) break;
- }
-
- return( l );
- }
-
-
-