libcortex
Event loop library following a "batteries included" approach
Loading...
Searching...
No Matches
linkedlist.h
1#ifndef LINKED_LIST_H
2#define LINKED_LIST_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8/*
9 * Mario Kicherer (dev@kicherer.org) 2016
10 *
11 */
12
13#include "llist.h"
14
15#undef CRTX_DLL_PREFIX
16#undef CRTX_DLL_TYPE
17#undef CRTX_DLL_FCT
18
19#define CRTX_DLL
20#include "llist.h"
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif