1XmStringLineCount(library call) XmStringLineCount(library call)
2
3
4
6 XmStringLineCount — A compound string function that returns the number
7 of separators plus one in the provided compound string
8
10 #include <Xm/Xm.h>
11 int XmStringLineCount(
12 XmString string);
13
15 XmStringLineCount returns the number of separators plus one in the pro‐
16 vided compound string. In effect, it counts the lines of text.
17
18 string Specifies the string
19
21 Returns the number of lines in the compound string. If string is
22 empty, the function returns 1. If NULL is passed into string, the func‐
23 tion returns 0 (zero).
24
26 XmStringCreate(3).
27
28
29
30 XmStringLineCount(library call)