1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/gnrc/pkt/gnrc_pkt.c

30 lines
654 B
C
Raw Normal View History

2016-02-11 00:45:25 +01:00
/*
* Copyright (C) 2016 Freie Universität Berlin
* 2017 HAW Hamburg
2016-02-11 00:45:25 +01:00
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @{
*
* @file
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
* @author Sebastian Meiling <s@mlng.net>
2016-02-11 00:45:25 +01:00
*/
#include "net/gnrc/pkt.h"
gnrc_pktsnip_t *gnrc_pktsnip_search_type(gnrc_pktsnip_t *pkt,
2016-02-11 00:45:25 +01:00
gnrc_nettype_t type)
{
while ((pkt != NULL) && (pkt->type != type)) {
pkt = pkt->next;
2016-02-11 00:45:25 +01:00
}
return pkt;
2016-02-11 00:45:25 +01:00
}
/** @} */