/* * activity4.h * * Created on: Sep 22, 2025 * Author: sowgro */ #ifndef INC_ACTIVITIES_ACTIVITY4_H_ #define INC_ACTIVITIES_ACTIVITY4_H_ typedef struct { char chunk_type[4]; uint32_t length; uint16_t format; uint16_t ntrcks; uint16_t division; } header_t; void activity4_run(); header_t get_header(uint8_t *p_song); #endif /* INC_ACTIVITIES_ACTIVITY4_H_ */