Skip to content

Commit ab814a9

Browse files
Add [in] annotations to @param in chip-zcl-buffer.h as needed (project-chip#897)
1 parent 3425be3 commit ab814a9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/app/chip-zcl/chip-zcl-buffer.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ typedef struct
6161
/**
6262
* Function that allocates a buffer.
6363
*
64-
* @param allocatedLength the number of octets the resulting buffer should be
65-
* able to store.
64+
* @param[in] allocatedLength the number of octets the resulting buffer should
65+
* be able to store.
6666
* @return A newly allocated buffer. This should later be freed with
6767
* chipZclBufferFree.
6868
*/
@@ -71,16 +71,16 @@ ChipZclBuffer_t * chipZclBufferAlloc(uint16_t allocatedLength);
7171
/**
7272
* Function that returns a raw pointer to the underlying buffer.
7373
*
74-
* @param buffer the buffer we are working with.
74+
* @param[in] buffer the buffer we are working with.
7575
* @return A pointer to its underlying memory.
7676
*/
7777
uint8_t * chipZclBufferPointer(ChipZclBuffer_t * buffer);
7878

7979
/**
8080
* Function that frees a buffer and its storage.
8181
*
82-
* @param buffer a buffer to free. The buffer should have been allocated with
83-
* chipZclBufferAlloc.
82+
* @param[in] buffer a buffer to free. The buffer should have been allocated
83+
* with chipZclBufferAlloc.
8484
*/
8585
void chipZclBufferFree(ChipZclBuffer_t * buffer);
8686

@@ -90,7 +90,7 @@ void chipZclBufferFree(ChipZclBuffer_t * buffer);
9090
* After this call, the buffer is ready for reading or writing from the
9191
* beginning again, depending on whether it was in reading more or writing mode.
9292
*
93-
* @param buffer the buffer to reset.
93+
* @param[in] buffer the buffer to reset.
9494
*/
9595
void chipZclBufferReset(ChipZclBuffer_t * buffer);
9696

@@ -99,15 +99,15 @@ void chipZclBufferReset(ChipZclBuffer_t * buffer);
9999
* when the buffer is ready for reading. Always returns 0 for buffers that are
100100
* being written to.
101101
*
102-
* @param buffer the buffer whose used length we want.
102+
* @param[in] buffer the buffer whose used length we want.
103103
* @return The number of bytes the given buffer holds.
104104
*/
105105
uint16_t chipZclBufferUsedLength(ChipZclBuffer_t * buffer);
106106

107107
/**
108108
* Indicates that we are done writing to a buffer and prepares it for reading.
109109
*
110-
* @param buffer the buffer we are done writing to.
110+
* @param[in] buffer the buffer we are done writing to.
111111
*/
112112
void chipZclBufferFinishWriting(ChipZclBuffer_t * buffer);
113113

0 commit comments

Comments
 (0)