1XmStringEmpty(library call) XmStringEmpty(library call)
2
3
4
6 XmStringEmpty — A compound string function that provides information on
7 the existence of non-zero-length text components
8
10 #include <Xm/Xm.h>
11 Boolean XmStringEmpty(
12 XmString s1);
13
15 XmStringEmpty returns a Boolean value indicating whether any non-zero-
16 length text components exist in the provided compound string. It
17 returns True if there are no text segments in the string. If this rou‐
18 tine is passed NULL as the string, it returns True.
19
20 s1 Specifies the compound string
21
23 Returns True if there are no text segments in the string. If this rou‐
24 tine is passed NULL as the string, it returns True.
25
27 XmStringCreate(3).
28
29
30
31 XmStringEmpty(library call)