Hello,
I don't know specifically where you will find these files. However, I would expect that these header files would contain function definitions (prototypes), and perhaps some macros definitions for the various peripheral items ADC, buzzer and SCI transmit operation. There should be no code within the header files. It may well be possible to re-construct the contents of these files. It may also be possible that some of the definitions are never used within the final code.
If you have .c files of similar names, you can immediately determine the function definitions from the code for each function. If the functions are within a library file for which you do not have the source code, you might need to do some experimentation by examining the way in which each function is called. The compiler should provide warnings for those functions where a function definition cannot be not found, or does not match the code for the function.
The compiler should also provide warnings where a macro definition is missing. These might pose a greater difficulty for re-construction, if complex. But first you will need to ascertain the extent of the problem by examination of compiler warnings and errors.
Regards,
Mac