#ifndef DEFS_H
#define DEFS_H

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


typedef struct apartmentItem{
	char itemName[30];
	int itemQty;
	char needed[4];
} item;


void buildList(item *itemList, int size);
item initItem(char newItem[], int newQty); 
void printItems(item *itemList, int size);

#endif
