/* * THIS IS THE MAIN PROGRAM OF THE INVENTORY CODE. DIVIDE UP * THE WORK OF THIS MAIN PROGRAM BY ADDING YOUR OWN FUNCTIONS. * DON'T FORGET TO DOCUMENT THIS FILE BEFORE YOU ARE DONE. */ #include #include /* ADD ANY OTHER HEADERS YOU NEED! */ /* * Get the constants, types and prototypes associated * with the inventory module. */ #include "h3invent.h" /* * PROTOTYPES AND COMMENTS FOR ANY HELPER FUNCTIONS GO HERE. */ int main(void) { return 0; } /* * DEFINITIONS OF ANY HELPER FUNCTIONS GO AFTER HERE. */