diff options
| author | drowe67 <[email protected]> | 2023-07-20 08:59:48 +0930 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-20 08:59:48 +0930 |
| commit | 06d4c11e699b0351765f10398abb4f663a984f36 (patch) | |
| tree | 33e22af0814c5b6c3d676f096ae8c2ac8a3ed9f0 /src/codec2_fifo.h | |
| parent | 6588e77f38bdebd7adffe091b22e7760d95d0ccb (diff) | |
| parent | 4d6c143c0abec15e1d6ed1fd95d36f80e6cb7df8 (diff) | |
Merge pull request #3 from drowe67/dr-cleanup21.2.0
Cleanup Part 2
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 } |
