summaryrefslogtreecommitdiff
path: root/project/Core/Inc/Project/song_info.h
blob: 9d6d5e6495eba1d95f9f04db0256ac47aa134f59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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;

uint8_t *get_song_info(uint8_t *p_song, song_info_t *ret);

#endif /* INC_PROJECT_SONG_INFO_H_ */