1XmStringConcat(library call)                      XmStringConcat(library call)
2
3
4

NAME

6       XmStringConcat  — A compound string function that appends one string to
7       another
8

SYNOPSIS

10       #include <Xm/Xm.h>
11       XmString XmStringConcat(
12       XmString s1,
13       XmString s2);
14

DESCRIPTION

16       XmStringConcat copies s2 to the end of s1 and returns  a  copy  of  the
17       resulting  compound  string.  The  original strings are preserved.  The
18       function will allocate space to hold the returned compound string.  The
19       application  is  responsible  for  managing  the  allocated space.  The
20       application can recover the allocated space by calling XmStringFree.
21
22       s1        Specifies the compound string  to  which  a  copy  of  s2  is
23                 appended
24
25       s2        Specifies  the compound string that is appended to the end of
26                 s1
27

RETURN

29       Returns a new compound string.
30
32       XmStringCreate(3) and XmStringFree(3).
33
34
35
36                                                  XmStringConcat(library call)
Impressum