ex28 extra credit

This commit is contained in:
Dan Buch
2016-04-16 14:48:19 -04:00
parent 1aafac69cb
commit d8c63c261d
6 changed files with 31 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
#include "your_library.h"
int howmanyweasels()
{
return WEASELS;
}

View File

@@ -0,0 +1,8 @@
#ifndef _your_library_h
#define _your_library_h
#define WEASELS 23
int howmanyweasels();
#endif