home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / pcmail / daemon / dosunix.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  861 b   |  42 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    dosunix 5
  6.  
  7. /* SUMMARY
  8.  
  9. /*    UNIX <-> MS-DOS text format conversion
  10.  
  11. /* PROJECT
  12.  
  13. /*    pc-mail
  14.  
  15. /* PACKAGE
  16.  
  17. /*    nfs
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    #include <stdio.h>
  22.  
  23. /*    #include "dosunix.h"
  24.  
  25. /* DESCRIPTION
  26.  
  27. /* .nf
  28.  
  29.  
  30.  
  31.  /* Anticipate ANSI-compatible compilers */
  32.  
  33.  
  34.  
  35. #ifdef __STDC__
  36.  
  37. int     unix2dos(FILE * ifp, FILE * ofp);
  38.  
  39. int     dos2unix(FILE * dfp, FILE * pfp);
  40.  
  41. char   *dosgets(char *buf, int len, FILE * fp);
  42.  
  43.  
  44.  
  45. #else
  46.  
  47. int     unix2dos();
  48.  
  49. int     dos2unix();
  50.  
  51. char   *dosgets();
  52.  
  53.  
  54.  
  55. #endif
  56.  
  57. /* AUTHOR(S)
  58.  
  59. /*    Wietse Z. Venema
  60.  
  61. /*    Eindhoven University of Technology
  62.  
  63. /*    Department of Mathematics and Computer Science
  64.  
  65. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  66.  
  67. /* CREATION DATE
  68.  
  69. /*    Sun Oct 29 16:41:50 MET 1989
  70.  
  71. /* LAST MODIFICATION
  72.  
  73. /*    10/29/89 22:30:05
  74.  
  75. /* VERSION/RELEASE
  76.  
  77. /*    1.1
  78.  
  79. /*--*/
  80.  
  81.  
  82.  
  83.