support.h
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /*
  2.  * ProFTPD - FTP server daemon
  3.  * Copyright (c) 1997, 1998 Public Flood Software
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program 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.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
  18.  */
  19. /* Non-specific support functions.
  20.  * $Id: support.h,v 1.3 1999/09/17 07:31:44 macgyver Exp $
  21.  */
  22. #ifndef __SUPPORT_H
  23. #define __SUPPORT_H
  24. #define CHOP(s) strip_end((s),"rn")
  25. /* Functions [optionally] provided by libsupp.a */
  26. #ifndef HAVE_GETOPT
  27. int getopt(int argc, char * const argv[], const char *optstring);
  28. extern char *optarg;
  29. extern int optind,opterr,optopt;
  30. #endif
  31. #ifndef HAVE_GETOPT_LONG
  32. struct option {
  33.   const char *name;
  34.   int has_arg;
  35.   int *flag;
  36.   int val;
  37. };
  38. int getopt_long(int argc, char * const argv[],
  39.                 const char *optstring,
  40.                 const struct option *longopts, int *longindex);
  41. #endif
  42. void block_signals();
  43. void unblock_signals();
  44. char *dir_interpolate(pool*,const char*);
  45. char *dir_abs_path(pool*,const char*,int);
  46. char *dir_realpath(pool*,const char*);
  47. char *dir_canonical_path(pool*,const char*);
  48. char *dir_best_path(pool*,const char*);
  49. char *dir_virtual_chdir(pool*,const char*);
  50. void add_exit_handler(void (*f)());
  51. void run_exit_handlers();
  52. void schedule(void (*f)(void*,void*,void*,void*),int nloops,
  53.               void*,void*,void*,void*);
  54. void run_schedule();
  55. int schedulep();
  56. mode_t file_mode(char*);
  57. int file_exists(char*);
  58. int dir_exists(char*);
  59. int exists(char*);
  60. char *make_arg_str(pool*,int,char**);
  61. char *strip_end(char*,char*);
  62. char *get_token(char**,char*);
  63. char *safe_token(char**);
  64. int check_shutmsg(time_t*,time_t*,time_t*,char*,size_t);
  65. char *sstrcat(char *dest, const char *src, size_t n);
  66. char *sstrncpy(char *dest, const char *src, size_t n);
  67. char *sreplace(pool*,char*,...);
  68. #if defined(HAVE_SYS_STATVFS_H) || defined(HAVE_SYS_VFS_H)
  69. unsigned long get_fs_size(char*);
  70. #endif
  71. #endif /* __SUPPORT_H */