diff options
| author | drowe67 <[email protected]> | 2023-07-14 12:36:50 +0930 |
|---|---|---|
| committer | David Rowe <[email protected]> | 2023-07-14 12:36:50 +0930 |
| commit | b86e88413d4c6ec428aaedb147f7675f28882fe4 (patch) | |
| tree | ce360925856e25d4343d59a37e2e6bac142d3752 /src/codec2_fifo.h | |
| parent | 0c2e969cfbe85548801eeb20ad8113969604892a (diff) | |
clang-format -i applied to src unittest misc
Diffstat (limited to 'src/codec2_fifo.h')
| -rw-r--r-- | src/codec2_fifo.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 } |
