mbuf_insert.md 328 Bytes
Newer Older
1 2 3 4 5 6 7 8
---
title: "mbuf_insert()"
decl_name: "mbuf_insert"
symbol_kind: "func"
signature: |
  size_t mbuf_insert(struct mbuf *, size_t, const void *, size_t);
---

9
Inserts data at a specified offset in the Mbuf.
10 11 12

Existing data will be shifted forwards and the buffer will
be grown if necessary.
13
Returns the number of bytes inserted. 
14