NO FRAMES

CPXstrcpy

public CPXCHARptr CPXstrcpy(char * dest_str, const char * src_str)
Definition file: cplex.h

The routine CPXstrcpy copies strings. It is exactly the same as the standard C library routine strcpy. This routine is provided so that strings passed to the message function routines (see CPXaddfuncdest) can be copied by languages that do not allow dereferencing of pointers (for example, older versions of Visual Basic).

Example

 CPXstrcpy (p, q);
 

Parameters:

dest_str

A pointer to the string to hold the copy of the string pointed to by src_str.

src_str

A pointer to a string to be copied to dest_str.

Returns:

The routine returns a pointer to the string being copied to.