blob: 3800e69eced9764a0a57426796e332f7490feb76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## nng_msg_clear
Clear message body content.
### Synopsis
```c
#include <nng/nng.h>
void nng_msg_clear(nng_msg *msg);
```
### Description
The `nng_msg_clear` function resets the body length of _msg_ to zero.
|