tfStrCpy

Jump to: navigation, search

Table of Contents >> Programmer's Reference


#include <trsocket.h>


void tfStrCpy (
char TM_FAR * destination,
const char TM_FAR * source
);


Function Description

This function copies the contents of one array (pointed to by 'source') and places it in the array pointed to by 'destination'. The array pointed to by 'destination' must be large enough to hold the contents of the array pointed to by 'source'.

If the two arrays overlap, the behavior is undefined.


Parameters

  • destination
    The array to which data is copied.
  • source
    The array from which data is copied.


Table of Contents >> Programmer's Reference