18b #ifndef MP3INFO_H #define MP3INFO_H #include typedef struct { unsigned short sync; int version; int protect; int layer; int bitrate; int freq; int padding; int channels; int ext; int copyright; int original; int emphasis; unsigned long seconds; } MP3INFO; MP3INFO* MP3Info(String fileName); #endif . 0