/** ************************************************************************** * funcs.h - Header file for the function renderArt * * Name: Paul Bonamy * CS2141 Section 1 * Program 1: ASCII ART * * Notice that the #includes go here, and the new line after the #endif * statement. * ****************************************************************************/ #ifndef FUNCS_H #define FUNCS_H #include #include using namespace std; void renderArt(int); #endif