/* * song_info.h * * Created on: Oct 15, 2025 * Author: sowgro */ #ifndef INC_PROJECT_SONG_INFO_H_ #define INC_PROJECT_SONG_INFO_H_ typedef struct { char *title; char *copyright; int tempo; } song_info_t; song_info_t get_song_info(unsigned char *p_song); #endif /* INC_PROJECT_SONG_INFO_H_ */