home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Magazine / HomeAutomation / Apache / include / php / ext / standard / php_filestat.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-06  |  2.7 KB  |  65 lines

  1. /*
  2.    +----------------------------------------------------------------------+
  3.    | PHP HTML Embedded Scripting Language Version 3.0                     |
  4.    +----------------------------------------------------------------------+
  5.    | Copyright (c) 1997,1998 PHP Development Team (See Credits file)      |
  6.    +----------------------------------------------------------------------+
  7.    | This program is free software; you can redistribute it and/or modify |
  8.    | it under the terms of one of the following licenses:                 |
  9.    |                                                                      |
  10.    |  A) the GNU General Public License as published by the Free Software |
  11.    |     Foundation; either version 2 of the License, or (at your option) |
  12.    |     any later version.                                               |
  13.    |                                                                      |
  14.    |  B) the PHP License as published by the PHP Development Team and     |
  15.    |     included in the distribution in the file: LICENSE                |
  16.    |                                                                      |
  17.    | This program is distributed in the hope that it will be useful,      |
  18.    | but WITHOUT ANY WARRANTY; without even the implied warranty of       |
  19.    | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        |
  20.    | GNU General Public License for more details.                         |
  21.    |                                                                      |
  22.    | You should have received a copy of both licenses referred to here.   |
  23.    | If you did not, or have any questions about PHP licensing, please    |
  24.    | contact core@php.net.                                                |
  25.    +----------------------------------------------------------------------+
  26.    | Author:  Jim Winstead <jimw@php.net>                                 |
  27.    +----------------------------------------------------------------------+
  28.  */
  29.  
  30. /* $Id: php_filestat.h,v 1.5 2000/03/06 20:37:11 ssb Exp $ */
  31.  
  32. #ifndef _FILESTAT_H
  33. #define _FILESTAT_H
  34.  
  35. PHP_RINIT_FUNCTION(filestat);
  36. PHP_RSHUTDOWN_FUNCTION(filestat);
  37.  
  38. PHP_FUNCTION(clearstatcache);
  39. PHP_FUNCTION(fileatime);
  40. PHP_FUNCTION(filectime);
  41. PHP_FUNCTION(filegroup);
  42. PHP_FUNCTION(fileinode);
  43. PHP_FUNCTION(filemtime);
  44. PHP_FUNCTION(fileowner);
  45. PHP_FUNCTION(fileperms);
  46. PHP_FUNCTION(filesize);
  47. PHP_FUNCTION(filetype);
  48. PHP_FUNCTION(is_writable);
  49. PHP_FUNCTION(is_readable);
  50. PHP_FUNCTION(is_executable);
  51. PHP_FUNCTION(is_file);
  52. PHP_FUNCTION(is_dir);
  53. PHP_FUNCTION(is_link);
  54. PHP_FUNCTION(file_exists);
  55. PHP_FUNCTION(stat);
  56. PHP_FUNCTION(lstat);
  57. PHP_FUNCTION(diskfreespace);
  58. PHP_FUNCTION(chown);
  59. PHP_FUNCTION(chgrp);
  60. PHP_FUNCTION(chmod);
  61. PHP_FUNCTION(touch);
  62. PHP_FUNCTION(clearstatcache);
  63.  
  64. #endif /* _FILESTAT_H */
  65.