home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume9 / pc-mail-nfs / dosunix.h < prev    next >
C/C++ Source or Header  |  1989-11-26  |  779b  |  42 lines

  1. /*++
  2. /* NAME
  3. /*    dosunix 5
  4. /* SUMMARY
  5. /*    UNIX <-> MS-DOS text format conversion
  6. /* PROJECT
  7. /*    pc-mail
  8. /* PACKAGE
  9. /*    nfs
  10. /* SYNOPSIS
  11. /*    #include <stdio.h>
  12. /*    #include "dosunix.h"
  13. /* DESCRIPTION
  14. /* .nf
  15.  
  16.  /* Anticipate ANSI-compatible compilers */
  17.  
  18. #ifdef __STDC__
  19. int     unix2dos(FILE * ifp, FILE * ofp);
  20. int     dos2unix(FILE * dfp, FILE * pfp);
  21. char   *dosgets(char *buf, int len, FILE * fp);
  22.  
  23. #else
  24. int     unix2dos();
  25. int     dos2unix();
  26. char   *dosgets();
  27.  
  28. #endif
  29. /* AUTHOR(S)
  30. /*    Wietse Z. Venema
  31. /*    Eindhoven University of Technology
  32. /*    Department of Mathematics and Computer Science
  33. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  34. /* CREATION DATE
  35. /*    Sun Oct 29 16:41:50 MET 1989
  36. /* LAST MODIFICATION
  37. /*    10/29/89 22:30:05
  38. /* VERSION/RELEASE
  39. /*    1.1
  40. /*--*/
  41.  
  42.