1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00

sys/ng_pktbuf: fixed doxygen

This commit is contained in:
Hauke Petersen 2015-05-26 16:45:16 +02:00
parent 57103f5823
commit b570f3c1cb

View File

@ -114,7 +114,8 @@ extern "C" {
*
* @return Pointer to the packet part that represents the new ng_pktsnip_t.
* @return NULL, if no space is left in the packet buffer.
* @return NULL, if @p pkt != NULL, @data = `pkt->data`, and @size > `pkt->data`.
* @return NULL, if @p pkt != NULL, @p data = `pkt->data`,
* and @p size > `pkt->data`.
*/
ng_pktsnip_t *ng_pktbuf_add(ng_pktsnip_t *pkt, void *data, size_t size,
ng_nettype_t type);