diff --git a/stack.c b/stack.c index 72ea52e..80f8b3a 100644 --- a/stack.c +++ b/stack.c @@ -16,10 +16,10 @@ #endif typedef struct { - uint8_t *buf; //!< Pointer to the internal buffer */ - size_t buf_sz; //!< The length of the allocated buffer, in bytes */ - size_t read_ptr; //!< Indicates where to read/write */ - size_t item_sz; //!< The size of the contained item, in bytes */ + uint8_t *buf; //!< Pointer to the internal buffer + size_t buf_sz; //!< The length of the allocated buffer, in bytes + size_t read_ptr; //!< Indicates where to read/write + size_t item_sz; //!< The size of the contained item, in bytes } Stack; typedef enum {