diff options
| author | Andrew Skalski <askalski@php.net> | 1999-09-16 19:03:27 +0000 |
|---|---|---|
| committer | Andrew Skalski <askalski@php.net> | 1999-09-16 19:03:27 +0000 |
| commit | 13a74e697959ea110e9daf54946bd417872feee4 (patch) | |
| tree | 3d9c7484f79ef079782a4174306dd210b5e06bdd /ext/ftp/ftp.h | |
| parent | 93313c576c1a98779d3e5e11e239e6cf8eb760b7 (diff) | |
| download | php-git-13a74e697959ea110e9daf54946bd417872feee4.tar.gz | |
added ftp_pwd() ftp_cdup() ftp_mkdir() and ftp_rmdir()
Diffstat (limited to 'ext/ftp/ftp.h')
| -rw-r--r-- | ext/ftp/ftp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/ftp/ftp.h b/ext/ftp/ftp.h index e23b659ae5..1a71ba70a1 100644 --- a/ext/ftp/ftp.h +++ b/ext/ftp/ftp.h @@ -17,7 +17,11 @@ extern PHP_MINIT_FUNCTION(ftp); PHP_FUNCTION(ftp_connect); PHP_FUNCTION(ftp_login); +PHP_FUNCTION(ftp_pwd); +PHP_FUNCTION(ftp_cdup); PHP_FUNCTION(ftp_chdir); +PHP_FUNCTION(ftp_mkdir); +PHP_FUNCTION(ftp_rmdir); PHP_FUNCTION(ftp_nlist); PHP_FUNCTION(ftp_listraw); PHP_FUNCTION(ftp_systype); |
