comparison src/audacious/fft.h @ 4557:2eee464379dc

Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 May 2008 01:29:46 +0300
parents 5a0f5ef1de61
children
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
19 * Audacious or using our public API to be a derived work. 19 * Audacious or using our public API to be a derived work.
20 */ 20 */
21 21
22 /* fft.h: header for iterative implementation of a FFT */ 22 /* fft.h: header for iterative implementation of a FFT */
23 23
24 #ifndef __AUDACIOUS_FFT_H__ 24 #ifndef AUDACIOUS_FFT_H
25 #define __AUDACIOUS_FFT_H__ 25 #define AUDACIOUS_FFT_H
26 26
27 #include <glib.h> 27 #include <glib.h>
28 28
29 G_BEGIN_DECLS 29 G_BEGIN_DECLS
30 30
39 void fft_perform(const sound_sample * input, float *output, fft_state * state); 39 void fft_perform(const sound_sample * input, float *output, fft_state * state);
40 void fft_close(fft_state * state); 40 void fft_close(fft_state * state);
41 41
42 G_END_DECLS 42 G_END_DECLS
43 43
44 #endif /* __AUDACIOUS_FFT_H__ */ 44 #endif /* AUDACIOUS_FFT_H */