#include #include #include #include #include #include #include #include #define TRUE (1 == 1) #define FALSE (1 != 1) #define DEBUG if (FALSE) /* * Author: * Date: * Purpose: * Problem: */ /* * This template reads data until a terminating value is reached. */ void init() { /* FUNCTION init */ } /* FUNCTION init */ void dump() { /* FUNCTION dump */ } /* FUNCTION dump */ int getInput() { /* FUNCTION getInput */ int dataReadFlag; return (dataReadFlag); } /* FUNCTION getInput */ void process() { /* FUNCTION process */ } /* FUNCTION process */ int main() { /* main */ int moreToDo; init(); moreToDo = getInput(); while (moreToDo) { /* while */ process(); moreToDo = getInput(); } /* while */ return EXIT_SUCCESS; } /* main */