CS-PROJECTS / c08_gis_system / cmdReader.h
cmdReader.h
Raw
#ifndef CMDREADER_H
#define CMDREADER_H
#include "arrayList.h"
#include "FIDIndex.h"
#include "StringHashTable.h"
#include "nextField.h"
#include "buildIndex.h"
#include "GISParse.h"
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

/**
 * Closes all files and clears the dynamically allocated arrayList and StringHashTable 
 */
void clean(arrayList* list, StringHashTable* table);

#endif