home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume9 / pc-mail-nfs / util.h < prev   
Encoding:
C/C++ Source or Header  |  1989-11-26  |  1.0 KB  |  47 lines

  1. /*++
  2. /* NAME
  3. /*    util 3
  4. /* SUMMARY
  5. /*    wrappers around standard library functions
  6. /* PROJECT
  7. /*    pc-mail
  8. /* PACKAGE
  9. /*    nfs
  10. /* SYNOPSIS
  11. /*    #include <stdio.h>
  12. /*    #include <pwd.h>
  13. /*    #include "util.h"
  14. /* DESCRIPTION
  15. /* .nf
  16.  
  17.  /* Anticipate on ANSI-compatible compilers */
  18.  
  19. #ifdef __STDC__
  20. FILE   *u_fopen(struct passwd * user, char *file, char *mode);
  21. int     u_unlink(char *file);
  22. DIR    *e_opendir(char *path);
  23. int     e_chdir(char *path);
  24. int     e_fork(void);
  25.  
  26. #else
  27. FILE   *u_fopen();            /* open file, log any errors */
  28. int     u_unlink();            /* unlink file, log any errors */
  29. DIR    *e_opendir();            /* open directory, log any errors */
  30. int     e_chdir();            /* change directory, log any errors */
  31. int     e_fork();            /* fork, log any errors */
  32.  
  33. #endif
  34. /* AUTHOR(S)
  35. /*    Wietse Z. Venema
  36. /*    Eindhoven University of Technology
  37. /*    Department of Mathematics and Computer Science
  38. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  39. /* CREATION DATE
  40. /*    Sun Oct 29 16:21:02 MET 1989
  41. /* LAST MODIFICATION
  42. /*    10/29/89 22:29:55
  43. /* VERSION/RELEASE
  44. /*    1.1
  45. /*--*/
  46.  
  47.