#include #include "tune.h" static void tune_init(struct tune *tune) { } static void tune_reload(struct tune *tune) { } static double tune_play(struct tune *tune, int time) { return sin(time); } static void tune_deinit(struct tune *tune) { } const struct tune TUNE = { .init = tune_init, .reload = tune_reload, .play = tune_play, .deinit = tune_deinit, };