Fix docstring formatting
This commit is contained in:
parent
d64320e7d8
commit
e07d355da4
1 changed files with 4 additions and 4 deletions
8
stack.c
8
stack.c
|
|
@ -16,10 +16,10 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t *buf; //!< Pointer to the internal buffer */
|
uint8_t *buf; //!< Pointer to the internal buffer
|
||||||
size_t buf_sz; //!< The length of the allocated buffer, in bytes */
|
size_t buf_sz; //!< The length of the allocated buffer, in bytes
|
||||||
size_t read_ptr; //!< Indicates where to read/write */
|
size_t read_ptr; //!< Indicates where to read/write
|
||||||
size_t item_sz; //!< The size of the contained item, in bytes */
|
size_t item_sz; //!< The size of the contained item, in bytes
|
||||||
} Stack;
|
} Stack;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue