log.h

/*
 * File Name:     log.h
 * Author:        Jade Cheng
 * Date:          March 29, 2009
 * Course:        ICS 451
 * Assignment:    Project 2
 */

#ifndef LOG_H_
#define LOG_H_

/**
 * Closes the log file.
 *
 * @param The log file pointer.
 */
extern void log_close(FILE * f);

/**
 * Initializes the log file.
 */
extern void log_init(void);

/**
 * Opens the log file.
 *
 * @return The log file pointer.
 */
extern FILE * log_open(void);

#endif /* LOG_H_ */
Valid HTML 4.01 Valid CSS