1999-04-17 08:37:12 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:32:16 +08:00
|
|
|
| PHP Version 4 |
|
1999-04-17 08:37:12 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:32:16 +08:00
|
|
|
| Copyright (c) 1997-2002 The PHP Group |
|
1999-04-17 08:37:12 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
| This source file is subject to version 2.02 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
|
|
|
| http://www.php.net/license/2_02.txt. |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-17 08:37:12 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: |
|
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
*/
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
/* $Id$ */
|
2000-07-24 09:40:02 +08:00
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_LINK_H
|
|
|
|
#define PHP_LINK_H
|
1999-04-17 08:37:12 +08:00
|
|
|
|
2000-06-14 02:07:19 +08:00
|
|
|
#ifdef HAVE_SYMLINK
|
|
|
|
|
1999-05-16 19:19:26 +08:00
|
|
|
PHP_FUNCTION(link);
|
|
|
|
PHP_FUNCTION(readlink);
|
|
|
|
PHP_FUNCTION(linkinfo);
|
|
|
|
PHP_FUNCTION(symlink);
|
1999-04-17 08:37:12 +08:00
|
|
|
|
2000-06-14 02:07:19 +08:00
|
|
|
#endif
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#endif /* PHP_LINK_H */
|