NO FRAMES

CPXstrlen

public int CPXstrlen(const char * s_str)
Definition file: cplex.h

The routine CPXstrlen determines the length of a string. It is exactly the same as the standard C library routine strlen. This routine is provided so that strings passed to the message function routines (see CPXaddfuncdest) can be analyzed by languages that do not allow dereferencing of pointers (for example, older versions of Visual Basic).

Example

 len = CPXstrlen (p);

Parameters:

s_str

A pointer to a character string.

Returns:

The routine returns the length of the string.