X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fcircularbytebuffer.h;fp=test_src%2Fcircularbytebuffer.h;h=917ee2acf6434d3f087383ec72cb0a876bc5e208;hp=9f2900328dfde17a497c214d17288db58473e0dd;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/test_src/circularbytebuffer.h b/test_src/circularbytebuffer.h index 9f29003..917ee2a 100644 --- a/test_src/circularbytebuffer.h +++ b/test_src/circularbytebuffer.h @@ -40,10 +40,10 @@ typedef struct { uint8_t buffer_size; /**< holds the amount of bytes which may be stored in the buffer */ uint8_t fillcount; /**< holds the amount of bytes actually stored in the buffer */ - uint8_t* buffer; /**< pointer to the actual buffer */ - uint8_t* head; /**< pointer to the head of the buffer */ - uint8_t* tail; /**< pointer to the tail of the buffer */ - uint8_t* top; /**< pointer to the last free address in the buffer */ + uint8_t *buffer; /**< pointer to the actual buffer */ + uint8_t *head; /**< pointer to the head of the buffer */ + uint8_t *tail; /**< pointer to the tail of the buffer */ + uint8_t *top; /**< pointer to the last free address in the buffer */ } circularbytebuffer_t; @@ -55,7 +55,7 @@ * \param buffersize size of the buffer to allocate * \param cb buffer context to be initialized */ -uint8_t circularbytebuffer_init(uint8_t buffersize, circularbytebuffer_t* cb); +uint8_t circularbytebuffer_init(uint8_t buffersize, circularbytebuffer_t *cb); #endif #if CIRCULARBYTEBUFFER_NO_INIT2==0 /** \brief buffer initialisation without automatic allocation @@ -66,18 +66,18 @@ uint8_t circularbytebuffer_init(uint8_t buffersize, circularbytebuffer_t* cb); * \param cb buffer context to be initialized * \param buffer buffer for the storage of data (you are responisble for allocation and freeing) */ -void circularbytebuffer_init2(uint8_t buffersize, circularbytebuffer_t* cb, void* buffer); +void circularbytebuffer_init2(uint8_t buffersize, circularbytebuffer_t *cb, void *buffer); #endif /** \brief * * */ -uint16_t circularbytebuffer_get_lifo(circularbytebuffer_t* cb); -uint16_t circularbytebuffer_get_fifo(circularbytebuffer_t* cb); -uint8_t circularbytebuffer_append(uint8_t, circularbytebuffer_t* cb); -uint8_t circularbytebuffer_push(uint8_t, circularbytebuffer_t* cb); -uint8_t circularbytebuffer_cnt(circularbytebuffer_t* cb); -void circularbytebuffer_free(circularbytebuffer_t* cb); +uint16_t circularbytebuffer_get_lifo(circularbytebuffer_t *cb); +uint16_t circularbytebuffer_get_fifo(circularbytebuffer_t *cb); +uint8_t circularbytebuffer_append(uint8_t, circularbytebuffer_t *cb); +uint8_t circularbytebuffer_push(uint8_t, circularbytebuffer_t *cb); +uint8_t circularbytebuffer_cnt(circularbytebuffer_t *cb); +void circularbytebuffer_free(circularbytebuffer_t *cb); /*@}*/ #endif /* CIRCULARBYTEBUFFER_H_ */