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

  1. /*
  2.    +----------------------------------------------------------------------+
  3.    | PHP HTML Embedded Scripting Language Version 3.0                     |
  4.    +----------------------------------------------------------------------+
  5.    | Copyright (c) 1997-1999 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.    | Authors: Rasmus Lerdorf <rasmus@lerdorf.on.ca>                       |
  27.    +----------------------------------------------------------------------+
  28.  */
  29.  
  30. /* $Id: file.h,v 1.22 2000/06/06 18:58:15 ccollie Exp $ */
  31.  
  32. /* Synced with php 3.0 revision 1.30 1999-06-16 [ssb] */
  33.  
  34. #ifndef _FILE_H
  35. #define _FILE_H
  36.  
  37. extern PHP_MINIT_FUNCTION(file);
  38.  
  39. PHP_FUNCTION(tempnam);
  40. PHP_FUNCTION(tmpfile);
  41. PHP_FUNCTION(fopen);
  42. PHP_FUNCTION(fclose);
  43. PHP_FUNCTION(popen);
  44. PHP_FUNCTION(pclose);
  45. PHP_FUNCTION(feof);
  46. PHP_FUNCTION(fread);
  47. PHP_FUNCTION(fgetc);
  48. PHP_FUNCTION(fgets);
  49. PHP_FUNCTION(fscanf);
  50. PHP_FUNCTION(fgetss);
  51. PHP_FUNCTION(fgetcsv);
  52. PHP_FUNCTION(fwrite);
  53. PHP_FUNCTION(fflush);
  54. PHP_FUNCTION(rewind);
  55. PHP_FUNCTION(ftell);
  56. PHP_FUNCTION(fseek);
  57. PHP_FUNCTION(mkdir);
  58. PHP_FUNCTION(rmdir);
  59. PHP_FUNCTION(fpassthru);
  60. PHP_FUNCTION(readfile);
  61. PHP_FUNCTION(umask);
  62. PHP_FUNCTION(rename);
  63. PHP_FUNCTION(copy);
  64. PHP_FUNCTION(file);
  65. PHP_FUNCTION(set_socket_blocking); /* deprecated */
  66. PHP_FUNCTION(socket_set_blocking);
  67. PHP_FUNCTION(socket_set_timeout);
  68. PHP_FUNCTION(socket_get_status);
  69. PHP_FUNCTION(set_file_buffer);
  70. PHP_FUNCTION(get_meta_tags);
  71. PHP_FUNCTION(flock);
  72. PHP_FUNCTION(fd_set);
  73. PHP_FUNCTION(fd_isset);
  74. PHP_FUNCTION(select);
  75. PHP_FUNCTION(realpath);
  76. PHP_FUNCTION(ftruncate);
  77. PHP_FUNCTION(fstat);
  78.  
  79. PHPAPI int php_set_sock_blocking(int socketd, int block);
  80. PHPAPI int php_file_le_fopen(void);
  81. PHPAPI int php_file_le_popen(void);
  82. PHPAPI int php_file_le_socket(void);
  83. PHPAPI int php_file_le_uploads(void);
  84.  
  85. #endif /* _FILE_H */
  86.