A compound string function that appends a specified number of bytes to a compound string
Format
#include <Xm/Xm.h> XmString XmStringNConcat XmString s1XmString s2int num_bytes
DESCRIPTION
This function is obsolete and exists for compatibility with previous releases. It is replaced by XmStringConcat. XmStringNConcat appends a specified number of bytes from s2 to the end of s1, including tags, directional indicators, and separators. It then returns the resulting compound string. The original strings are preserved. The function allocates space for the resulting compound string. The application is responsible for managing the allocated space. The application can recover the allocated space by calling XmStringFree.
RETURN
Returns a new compound string.
RELATED