/* * File: * cliodata.c * Author: * Samuel A. Rebelsky * Version: * 0.1 of July 2003 * Summary: * Procedures and variables used to store the current set * of visits. See clio.h for details. */ /********************************************************************* * Headers * ***********/ #include "clio.h" /********************************************************************* * Variables * *************/ pagevisit visits[]; int numvisits; int startime; int endtime; int pagetypes; /********************************************************************* * Exported Functions * **********************/ void loadData(selector *query) { } /* loadData() */