summaryrefslogtreecommitdiff
path: root/project/Core/Inc/Project/song.h
blob: 3b9938823b7ddfb68f2a8666901ca19d6783d51d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * song.h
 *
 *  Created on: May 14, 2022
 *      Author: Bruce Herring
 *
 *  DO NOT MODIFY
 */

#ifndef INC_SONG_H_
#define INC_SONG_H_

#include <stdint.h>

// A little struct to help make tracking songs easier.
typedef struct {
	unsigned char* p_song;
	unsigned int size;
}song;

song get_song (uint8_t);

#endif /* INC_SONG_H_ */