1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* * 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(); #endif /* INC_ACTIVITIES_ACTIVITY4_H_ */