//**************************************************************
//
// CS 240B Winter Quarter 2003 Ohio University Travis Dillon
// Proj2 : Array Workshop
// file : menu_print.h
// started : 01-16-03
//
//**************************************************************
#ifndef MENU_PRINT
#define MENU_PRINT
#include <iostream>
#include <iomanip>
using namespace std;
void main_menu();
void fill_menu(int x[], int array_sz);
void constant(int x[], int array_sz);
void print_out(int x[], int array_sz);
void space(int num_space);
#endif //MENU_PRINT