Revision 328
increased bitrate to 115200
queue.h | ||
---|---|---|
1 | 1 |
#ifndef QUEUE_H_INCLUDED |
2 | 2 |
#define QUEUE_H_INCLUDED |
3 | 3 |
|
4 |
struct queue; |
|
5 | 4 |
/** |
6 |
* @brief Queue. |
|
5 |
* @defgroup queue_t queue_t |
|
6 |
* @brief Queue module |
|
7 | 7 |
* |
8 | 8 |
* Can be used like a C++ std::queue. |
9 | 9 |
* A queue_t is an interface for a list_t that simulates a FIFO. |
10 |
* |
|
11 |
* @{ |
|
10 | 12 |
*/ |
13 |
|
|
14 |
|
|
15 |
struct queue; |
|
11 | 16 |
typedef struct queue queue_t; |
12 | 17 |
|
13 | 18 |
/** |
... | ... | |
54 | 59 |
*/ |
55 | 60 |
void (queue_pop )(queue_t *q); |
56 | 61 |
|
62 |
/** |
|
63 |
* @} |
|
64 |
*/ |
|
65 |
|
|
57 | 66 |
#endif //QUEUE_H_INCLUDED |
Also available in: Unified diff