//**************************************************************
//
// CS 240B Winter Quarter 2003 Ohio University Travis Dillon
// Proj2 : Array Workshop
// file : fill.h
// started : 01-16-03
//
//**************************************************************
#ifndef FILL
#define FILL
#include <iostream>
#include <cstdlib>
using namespace std;
void by_hand(int x[],int array_sz);
void arith_progr(int x[],int array_sz);
void fibonacci(int x[],int array_sz);
void random(int x[],int array_sz);
void set_size(int x[], int& array_sz);
#endif //FILL