blob: 75b46cd7bc29794f8e42bef02a3c7fcf7c0b8043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## nng_msg_header_len
Return message header length.
### Synopsis
```c
#include <nng/nng.h>
size_t nng_msg_header_len(nng_msg *msg);
```
### Description
The `nng_msg_header_len` returns the length of message header of _msg_.
### Return Values
Length of message header.
### See Also
xref:nng_msg_header.adoc[nng_msg_header]
|