foo_lib.c 463 Bytes
/*******************************************************************
 * foo_lib.c
 * Atul Varma - 5/24/2004
 * CS Independent Study
 * $Id: foo_lib.c,v 1.1 2004/05/27 16:25:14 varmaa Exp $
 *
 * Contains external library functions/variables for foo.c.
 *******************************************************************
*/

/* Test global variable. */
int stuff_count;

/* Increment global variable. */
int increment_stuff_count()
{
  return stuff_count += 1;
}