home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / xgopher.1.3 / misc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-08  |  1.6 KB  |  78 lines

  1. /* misc.h
  2.    function headers for functions in misc.c */
  3.  
  4.      /*---------------------------------------------------------------*/
  5.      /* Xgopher        version 1.3     08 April 1993                  */
  6.      /*                version 1.2     20 November 1992               */
  7.      /*                version 1.1     20 April 1992                  */
  8.      /*                version 1.0     04 March 1992                  */
  9.      /* X window system client for the University of Minnesota        */
  10.      /*                                Internet Gopher System.        */
  11.      /* Allan Tuchman, University of Illinois at Urbana-Champaign     */
  12.      /*                Computing and Communications Services Office   */
  13.      /* Copyright 1992, 1993 by                                       */
  14.      /*           the Board of Trustees of the University of Illinois */
  15.      /* Permission is granted to freely copy and redistribute this    */
  16.      /* software with the copyright notice intact.                    */
  17.      /*---------------------------------------------------------------*/
  18.  
  19. #include "gopher.h"
  20.  
  21. gopherTime timeNow(
  22. );
  23.  
  24. gopherTime timeSince(
  25. #ifdef PROTO
  26.     gopherTime
  27. #endif
  28. );
  29.  
  30. void setDirTime(
  31. #ifdef PROTO
  32.     gopherDirP
  33. #endif
  34. );
  35.  
  36. void clearDirWhenOld(
  37. #ifdef PROTO
  38.     gopherDirP
  39. #endif
  40. );
  41.  
  42. void    getTempFile(
  43. #ifdef PROTO
  44.     char *        /* tempName */
  45. #endif
  46. );
  47.  
  48. char    **makeWordList(
  49. #ifdef PROTO
  50.     char    *
  51. #endif
  52. );
  53.  
  54. void freeWordList(
  55. #ifdef PROTO
  56.     char **
  57. #endif
  58. );
  59.  
  60. char    *cmdPath(
  61. #ifdef PROTO
  62.     char    *
  63. #endif
  64. );
  65.  
  66. char *tildePath(
  67. #ifdef PROTO
  68.     char    *    /* path */
  69. #endif
  70. );
  71.  
  72. void vStringSet(
  73. #ifdef PROTO
  74.     vString *,    /* vs */
  75.     char *        /* value */
  76. #endif
  77. );
  78.