Copyright (C) 2003 Idan Nof

0. Contents of this file:

	1. Source files list
	2. Idealized overview of source-files dependencies

1. Source files list

	FILE-NAME       DESCRIPTION

	/src            SUB-DIRECTORY

	Makefile        GNU Makefile for GCC
	rm.bat          A 'rm' batch file for DOS

	cost.c          calculate cost
	date.c          routines for gregorian dates
	error.c         handle errors
	global.c        global definitions
	gpl.c           GPL license
	list.c          routines for lists
	log.c           main file
	logstamp.h      definitions for time-stamps
	mytime.c        routines for time-stamps manipulation
	parsearg.c      parse command-line arguments
	parselog.c      parse log-file
	proc_log.c      process log-file front-end
	report.c        report results
	result.c        raw-results processing
	show_gpl.c      print license
	tariff.c        tariff parameters
	token.c         process log-file tokens
	
	Note that for each of the above *.c files (except for the main source
	file) have a matching *.h prototype file 

2. Idealized overview of source-files dependencies (out of date)

	log.c      -> error.c, parsearg.c, proc_log.c, report.c, results.c, 
	              show_gpl.c

	proc_log.c -> parselog.c, token.c, cost.c
	parselog.c -> mytime.c
	mytime.c   -> date.c
	cost.c     -> tariff.c

	show_gpl.c -> gpl.c
