home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / XBBS7200.ZIP / XBBS7200.TAR / today / potm.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-14  |  273 b   |  20 lines

  1. /*
  2. **    <potm.c> --    Print out the phase of the moon ...
  3. **
  4. **    programmer:    John Dilley    (mordred:jad)
  5. **
  6. **    creation date:    Sat Feb  9 14:27
  7. **
  8. **
  9. **    modification history
  10. **
  11. */
  12.  
  13. static    char    potm[64];
  14.  
  15. main()
  16. {
  17.     moontxt(potm);
  18.     printf("Phase-of-the-Moon:%s\n", potm+11);
  19. }
  20.