1XmStringByteStreamLength(library call) XmStringByteStreamLength(library call)
2
3
4
6 XmStringByteStreamLength — A function that returns the size of a string
7
9 #include <Xm/Xm.h>
10 unsigned int XmStringByteStreamLength (string)
11 unsigned char *string;
12 (void)
13
15 XmStringByteStreamLength receives a byte stream format string and
16 returns the size, in bytes, of that stream, including the header.
17 Because of this header information, even a NULL string will cause
18 XmStringByteStreamLength to return a non-zero value.
19
20 string Specifies the byte stream format string.
21
23 Returns the size of string, including the header.
24
25
26
27 XmStringByteStreamLength(library call)