/*
Matthew Kingswood
March 31st 2023
CPSC Lab 1011 Section 003 
Lab 9
File of lab 9 that holds all of the prototypes as well as the typedef of the
struct and the libraries to include
*/

#ifndef DEFS_H_
#define DEFS_H_

#include<stdio.h>
#include<string.h>

typedef struct exercise {
	char name[20];
	char muscles[40];
	int weight;
	int time;
	int sets;
	int reps;
} exercise ;

void initArray(int arraySize, exercise workout[], FILE *infile);
void printArray (int arraySize, exercise workout[]);
void getWorkout (int arraySize, exercise workout[]);



#endif
