home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / mm-0.90 / mh.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-18  |  912 b   |  40 lines

  1. /*
  2.  * Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3.  * the City of New York.  Permission is granted to any individual or
  4.  * institution to use, copy, or redistribute this software so long as it
  5.  * is not sold for profit, provided this copyright notice is retained.
  6.  */
  7.  
  8. #ifndef lint
  9. static char *rcsid = "$Header: /f/src2/encore.bin/cucca/mm/tarring-it-up/RCS/mh.c,v 2.1 90/10/04 18:24:46 melissa Exp $";
  10. #endif
  11.  
  12. /* mh.c: routines to handle mh type mail files */
  13.  
  14. #include "mm.h"
  15.  
  16.  
  17. mh_open (mail)
  18. msgvec *mail;
  19. {
  20.     printf ("mh format not supported yet\n");
  21.     return(false);            /* let them know we failed */
  22. }
  23.  
  24. mh_probe (file)
  25. char *file;
  26. {
  27.     return (false);
  28. }
  29. /* things to be done */
  30.  
  31. mh_close () {
  32.     return(false);            /* let them know we failed */
  33. }
  34. mh_rdmsg () {
  35.     return(false);            /* let them know we failed */
  36. }
  37. mh_wrmsg () {
  38.     return(false);            /* let them know we failed */
  39. }
  40.