logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

XmStringGetNextTriple — An XmString function that returns the type, length, and value of the next

Description

XmStringGetNextTriple returns the type, length, and value of the next component in  the  compound  string
       identified by context.  This function returns one component at a time.

       context   Specifies the string context structure that was allocated by the XmStringInitContext function.

       length    Specifies a pointer to the length of the value of the returned component.

       value     Specifies a pointer to the value of the returned component.  If the returned value is not NULL,
                 the  function allocates space to hold the returned value.  When the application no longer needs
                 the returned compound string, the application should call XtFree.

Name

XmStringGetNextTriple  —  An  XmString  function  that  returns  the  type, length, and value of the next
       component in the compound string "XmStringGetNextTriple"

Return

       Returns the type of the component found. Refer to the XmStringComponentType(3) reference page for a  list
       of component types.

Synopsis

       #include <Xm/Xm.h>
       XmStringComponentTypeXmStringGetNextTriple(
       XmStringContextcontext,
       unsignedint*length,
       XtPointer*value);

See Also