home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / gopher+1.2b4 / object / util.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  1.5 KB  |  51 lines

  1. /********************************************************************
  2.  * lindner
  3.  * 3.2
  4.  * 1993/03/18 22:28:46
  5.  * /home/mudhoney/GopherSrc/CVS/gopher+/object/util.h,v
  6.  * Exp
  7.  *
  8.  * Paul Lindner, University of Minnesota CIS.
  9.  *
  10.  * Copyright 1991, 1992 by the Regents of the University of Minnesota
  11.  * see the file "Copyright" in the distribution for conditions of use.
  12.  *********************************************************************
  13.  * MODULE: util.h
  14.  * Header file for routines in util.c
  15.  *********************************************************************
  16.  * Revision History:
  17.  * util.h,v
  18.  * Revision 3.2  1993/03/18  22:28:46  lindner
  19.  * Updated protos
  20.  *
  21.  * Revision 3.1.1.1  1993/02/11  18:03:06  lindner
  22.  * Gopher+1.2beta release
  23.  *
  24.  * Revision 2.1  1992/12/21  19:43:15  lindner
  25.  * Added prototype for skip_whitespace
  26.  *
  27.  * Revision 1.1  1992/12/10  23:27:52  lindner
  28.  * gopher 1.1 release
  29.  *
  30.  *
  31.  *********************************************************************/
  32.  
  33.  
  34. /*
  35.  * Definitions of stuff in util.c
  36.  */
  37. int readn(/*fd, ptr, nbytes*/);
  38. int writen(/*fd, ptr, nbytes*/);
  39. int    writestring(/*fd, stringptr*/);
  40. int    readline(/*fd, ptr, maxlen*/);
  41. int    readfield(/*fd, ptr, maxlen*/);
  42. int    sreadword(/*input, output, maxlen*/);
  43. void   ZapCRLF(/*char * */);
  44. char   from_hex(/* char */);
  45. char   *to_hex(/* char */);
  46. void   Fromhexstr( /* char, char */);
  47. void   Tohexstr(/* char *, char * */);
  48. void   Hexall(/* char *, char * */);
  49. char   *strcasestr(/* char *, char * */);
  50. char   *skip_whitespace(/* char * */);
  51.