RXSTRINGs

Many of the REXX application programming interfaces pass REXX character strings to and from a REXX procedure. The RXSTRING data structure is used to describe REXX character strings. An RXSTRING is a content-insensitive, flat model character string with a theoretical maximum length of 4 gigabytes. The following structure defines an RXSTRING:
RXSTRING data structure

typedef struct {
   ULONG           strlength;     /* length of string             */
   PCH             strptr;        /* pointer to string            */
} RXSTRING;
typedef RXSTRING *PRXSTRING;      /* pointer to an RXSTRING       */

Notes: