1XmStringIsVoid(library call) XmStringIsVoid(library call)
2
3
4
6 XmStringIsVoid — A compound string function that provides information
7 on the existence of non-zero-length text components, tab components, or
8 separator components
9
11 #include <Xm/Xm.h>
12 Boolean XmStringIsVoid(
13 XmString s1);
14
16 XmStringIsVoid returns a Boolean value indicating whether or not string
17 s1 is void.
18
19 s1 Specifies the compound string
20
22 Returns True if any non-zero-length text components, tab components, or
23 separator components exist in s1. That is, the function returns True
24 if the string has no text, tabs, or separators. If s1 contains the
25 NULL string, the function returns True.
26
28 XmStringCreate(3).
29
30
31
32 XmStringIsVoid(library call)