Skip to content
Snippets Groups Projects
Commit 2adc0eae authored by Cenk Gündoğan's avatar Cenk Gündoğan
Browse files

cib: doc fix

parent 7cc2a910
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
* @details This structure provides an organizational interface
* and combined with an memory array forms a circular buffer.
*
* @author unknown, propably Kaspar Schleiser <kaspar@schleiser.de>
* @author unknown, probably Kaspar Schleiser <kaspar@schleiser.de>
*/
#ifndef CIB_H
......@@ -42,7 +42,7 @@ typedef struct {
#define CIB_INIT(SIZE) { 0, 0, (SIZE) - 1 }
/**
* @brief Initialize cib_t to 0 and set size.
* @brief Initialize @p cib to 0 and set buffer size to @p size.
*
* @param[out] cib Buffer to initialize.
* Must not be NULL.
......@@ -63,7 +63,7 @@ static inline void cib_init(cib_t *__restrict cib, unsigned int size)
*
* @param[in] cib the cib_t to check.
* Must not be NULL.
* @return How often cib_get() can be called before the CIB is empty.
* @return How often cib_get() can be called before @p cib is empty.
*/
static inline unsigned int cib_avail(cib_t *__restrict cib)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment