From: swashin@eis.calstate.edu (Steve Washington)
Newsgroups: comp.sys.mac.games
Subject: void MarathonMessage(void)
Date: 17 Nov 1994 10:23:03 -0800
Organization: California Technology Project of The Calif State Univ
Lines: 15
Message-ID: <3ag727$9pq@eis.calstate.edu>
NNTP-Posting-Host: eis.calstate.edu

void MarathonMessage(void) /* sends daily message to csmg newsgroup */
{
  FILE *fp;
  
  fp = fopen( "mar.txt", "w" );
  fprintf(fp, "I called Bungie today. I talked to a guy who sounds like ");
  fprintf(fp, "he knows whats up.  He said that the demo will be here ");
  fprintf(fp, "%s night, or %s at the latest.\n", Tommorrow(), DayAftTom());
  fprintf(fp, "Boy-o-boy!\n");
  fclose( fp );
  send_news( "Marathon Tomorrow!", comp.sys.mac.games, "mar.txt" );
}

/* Hate mail to swashin@eis.calstate.edu */
--