/* * Convert.h * * Created: Tue Feb 22 2022 20:31:26 * Author Chris */ #ifndef CONVERT_H_ #define CONVERT_H_ // ============================================================================================ // Includes #include #include // ============================================================================================ // Defines // ============================================================================================ // Datatypes // ============================================================================================ // Function Declarations int Convert_Char_To_Number(char input); int Convert_CharArray_To_Number(char input[], int length); #endif /* CONVERT_H_ */