- Added first file descriptions.

This commit is contained in:
ccremers 2004-05-15 12:39:49 +00:00
parent e26d97bf2b
commit 85a470abe2
2 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,8 @@
/**
* @file runs.c Originally contained only procedures related to runs, but has grown
* @file runs.c
* \brief run related logic.
*
* Originally contained only procedures related to runs, but has grown
* somewhat over time.
*/
#include <stdlib.h>

View File

@ -1,3 +1,10 @@
/**
* @file terms.c
* \brief Term related base functions.
*
* Intended to be a standalone file, however during development it turned out that a termlist structure was needed
* to define term types, so there is now a dependency loop with termlists.c.
*/
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>