From dacaf798037d45118f87e57cf21f21ddd8c3e7c1 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Tue, 2 Sep 2014 19:10:11 +0000 Subject: refactor names --- fft.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fft.c') diff --git a/fft.c b/fft.c index 12ef65c..c0827c5 100644 --- a/fft.c +++ b/fft.c @@ -66,7 +66,7 @@ init_fft(size_t n) } int -dofft(struct fft *p, int16_t *data, double *out, int odd) +exec_fft(struct fft *p, int16_t *data, double *out, int odd) { int i; @@ -84,7 +84,7 @@ dofft(struct fft *p, int16_t *data, double *out, int odd) } void -del_fft(struct fft *p) +free_fft(struct fft *p) { fftw_free(p->in); fftw_free(p->out); -- cgit v1.2.3