Please enable JavaScript to view this site.

ESL Documentation

ESLLIB Function

Convert a character array into an Esl string.

EslSetStringValue( STRING_SV, ADDRESS_IV, LENGTH_IV )

STRING_SV

A string variable that is to receive converted string.

ADDRESS_IV

A pointer to the area in memory containing the single byte character array.

LENGTH_IV

The number of characters to be copied to the Esl string.

Description

Use this function to copy a character array to an Esl string. Whilst this function is ideal for converting null terminated character arrays, as using by 'C' and system API's, as a length is specified, it will handle any single byte character array.

See Also

EslPtrStrLen( ) Function