lib.h
上传用户:skhuanbao
上传日期:2007-01-04
资源大小:43k
文件大小:1k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.     File: lib/lib.h
  3.     Version 1.0
  4.     
  5.     Copyright (C) 1998 by Wolfgang Zekoll <wzk@quietsche-entchen.de>
  6.     This source is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 1, or (at your option)
  9.     any later version.
  10.     This source is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. #ifndef _LIB_INCLUDED
  19. #define _LIB_INCLUDED
  20. extern char *program;
  21. extern int verbose;
  22. void *allocate(size_t size);
  23. void *reallocate(void *p, size_t size);
  24. unsigned int uppercase(unsigned int c);
  25. int isuppercase(unsigned int c);
  26. unsigned int lowercase(unsigned int c);
  27. int islowercase(unsigned int c);
  28. char *strlwr(char *string);
  29. char *strupr(char *string);
  30. char *skip_ws(char *string);
  31. char *noctrl(char *buffer);
  32. char *get_word(char **from, char *to, int maxlen);
  33. char *get_quoted(char **from, int delim, char *to, int max);
  34. char *copy_string(char *y, char *x, int len);
  35. int strpcmp(char *string, char *pattern);
  36. #endif