[PHP-DEV] CVS update: php3/functions From: rasmus (php-dev <email protected>)
Date: 11/25/98

Date: Wednesday November 25, 1998 @ 2:37
Author: rasmus

Update of /repository/php3/functions
In directory asf:/u2/tmp/cvs-serv4205/functions

Modified Files:
        dir.c
Log Message:
Missing a prototype there

Index: php3/functions/dir.c
diff -c php3/functions/dir.c:1.55 php3/functions/dir.c:1.56
*** php3/functions/dir.c:1.55 Wed Nov 18 16:23:04 1998
--- php3/functions/dir.c Wed Nov 25 02:37:18 1998
***************
*** 27,33 ****
     +----------------------------------------------------------------------+
   */
  
! /* $Id: dir.c,v 1.55 1998/11/18 21:23:04 ssb Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
--- 27,33 ----
     +----------------------------------------------------------------------+
   */
  
! /* $Id: dir.c,v 1.56 1998/11/25 07:37:18 rasmus Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
***************
*** 84,89 ****
--- 84,91 ----
          return SUCCESS;
  }
  
+ /* {{{ proto int opendir(string path)
+ Open a directory and return a dir_handle */
  void php3_opendir(INTERNAL_FUNCTION_PARAMETERS)
  {
          pval *arg;
***************
*** 108,113 ****
--- 110,116 ----
          GLOBAL(dirp_id) = ret;
          RETURN_LONG(ret);
  }
+ /* }}} */
  
  /* {{{ proto void closedir([int dir_handle])
  Close directory connection identified by the dir_handle */

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>