/**
 * mylibrary.h
 *
 * This is the header file for the mylibrary.cpp, to demonstrate header files and #include
 * Sean Ho for CMPT166
 */
#ifndef _MYLIBRARY_H_
#define _MYLIBRARY_H_

extern int numApples;

int double_me(int x);

#endif
