aboutsummaryrefslogtreecommitdiff
path: root/src/codec2_fifo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/codec2_fifo.h')
-rw-r--r--src/codec2_fifo.h6
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
}