/********************************************************************* * FileName: Supporting.C * Processor: 18F4520 * Compiler: MCC18 * * Author Date Comment *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * David Fisher 9/25/07 ********************************************************************/ #include #include "Supporting.h" /** Variables visible within this .c file only ******************/ unsigned char privateVariable; /**************************************************************** Function Prototypes ****************************************************************/ long integerExp(int, char); void exampleFunction(void); /***************************************************************** * Function: exampleFunction * Input Variables: * Output return: * Overview: ******************************************************************/ void exampleFunction() { // Code for function goes here } /***************************************************************** * Function: integerExp * Input Variables: base and exp where output=base^exp * Output return: Resulting output from exponentiation operation * Overview: Performs exponentiation for integers ******************************************************************/ long integerExp(int base, char exp) { // Your code goes here for this function }