blob: c8eff60bc8fe6622c331111c5568b284e0aa2da8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
## nng_msg_header_clear
Clear message header.
### Synopsis
```c
#include <nng/nng.h>
void nng_msg_header_clear(nng_msg *msg);
```
### Description
The `nng_msg_clear` function resets the header length of _msg_ to zero.
### See Also
xref:nng_msg_header.adoc[nng_msg_header]
|