Computer Science 2574
Intro to Data Structures & Soft Eng

/*-----------------------------------------------------------------
Module Name:             odbwrite.h
Interface File:          odbwrite.h
Implementation File:     odbwrite.c
Description:
this file is responsible for writing all of the information
either to the disk or displaying it on the screen.

Functions:	Name		Purpose
		WriteODBFile	writes an odb file from existing data




Called by:     main

Author:      	Jon Ford
Revision:	3/27/96
Version:     	1.1
------------------------------------------------------------------*/
#ifndef odbwrite_h
#define odbwrite_h
#include"dlist.h"

void WriteODBFile(ListMgr listmgr);

#endif