From b86e88413d4c6ec428aaedb147f7675f28882fe4 Mon Sep 17 00:00:00 2001 From: drowe67 Date: Fri, 14 Jul 2023 12:36:50 +0930 Subject: clang-format -i applied to src unittest misc --- src/codec2_fifo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/codec2_fifo.h') diff --git a/src/codec2_fifo.h b/src/codec2_fifo.h index 57e3b96..c96f785 100644 --- a/src/codec2_fifo.h +++ b/src/codec2_fifo.h @@ -39,16 +39,16 @@ extern "C" { struct FIFO; struct FIFO *codec2_fifo_create(int nshort); -struct FIFO *codec2_fifo_create_buf(int nshort, short* buf); +struct FIFO *codec2_fifo_create_buf(int nshort, short *buf); void codec2_fifo_destroy(struct FIFO *fifo); int codec2_fifo_write(struct FIFO *fifo, short data[], int n); int codec2_fifo_read(struct FIFO *fifo, short data[], int n); /* Return the number of bytes stored in the FIFO */ -int codec2_fifo_used(const struct FIFO * const fifo); +int codec2_fifo_used(const struct FIFO *const fifo); /* Return the space available in the FIFO */ -int codec2_fifo_free(const struct FIFO * const fifo); +int codec2_fifo_free(const struct FIFO *const fifo); #ifdef __cplusplus } -- cgit v1.2.3