/********************************************************************* * FileName: Supporting.h * Processor: 18F4520 * Compiler: MCC18 * * Author Date Comment *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * David Fisher 9/25/07 ********************************************************************/ #ifndef __SUPPORTING_H__ #define __SUPPORTING_H__ /************************************************************************************************** External Definitions ***************************************************************************************************/ // Set defines here that are used in both supporting and main #define EXAMPLE 100 /***************************************************************** * Function: integerExp * Input Variables: base and exp where output=base^exp * Output return: Resulting output from exponentiation operation * Overview: Performs exponentiation for integers ******************************************************************/ extern long integerExp(int, char); /***************************************************************** * Function: exampleFunction * Input Variables: * Output return: * Overview: ******************************************************************/ extern void exampleFunction(void); #endif