sniper          Sat Sep  6 08:56:03 2003 EDT

  Added files:                 
    /php-src/ext/standard       php_http.h 

  Removed files:               
    /php-src/ext/standard       http.h 

  Modified files:              
    /php-src/ext/standard       http.c 
  Log:
  renamed http.h -> php_http.h
  
Index: php-src/ext/standard/http.c
diff -u php-src/ext/standard/http.c:1.4 php-src/ext/standard/http.c:1.5
--- php-src/ext/standard/http.c:1.4     Sat Sep  6 03:34:58 2003
+++ php-src/ext/standard/http.c Sat Sep  6 08:56:02 2003
@@ -16,9 +16,9 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: http.c,v 1.4 2003/09/06 07:34:58 pollita Exp $ */
+/* $Id: http.c,v 1.5 2003/09/06 12:56:02 sniper Exp $ */
 
-#include "http.h"
+#include "php_http.h"
 #include "php_ini.h"
 #include "url.h"
 

Index: php-src/ext/standard/php_http.h
+++ php-src/ext/standard/php_http.h
/*
   +----------------------------------------------------------------------+
   | PHP Version 4                                                        |
   +----------------------------------------------------------------------+
   | Copyright (c) 1997-2003 The PHP Group                                |
   +----------------------------------------------------------------------+
   | This source file is subject to version 3.0 of the PHP license,       |
   | that is bundled with this package in the file LICENSE, and is        |
   | available through the world-wide-web at the following url:           |
   | http://www.php.net/license/3_0.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          |
   | [EMAIL PROTECTED] so we can mail you a copy immediately.               |
   +----------------------------------------------------------------------+
   | Authors: Sara Golemon <[EMAIL PROTECTED]>                              |
   +----------------------------------------------------------------------+
*/

/* $Id: php_http.h,v 1.1 2003/09/06 12:56:02 sniper Exp $ */

#ifndef PHP_HTTP_H
#define PHP_HTTP_H

#include "php.h"
#include "php_smart_str.h"

PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,
                                const char *num_prefix, int num_prefix_len,
                                const char *key_prefix, int key_prefix_len,
                                const char *key_suffix, int key_suffix_len TSRMLS_DC);
#define php_url_encode_hash(ht, formstr)        php_url_encode_hash_ex((ht), 
(formstr), NULL, 0, NULL, 0, NULL, 0 TSRMLS_CC)

PHP_FUNCTION(http_build_query);

#endif

/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * End:
 * vim600: sw=4 ts=4 fdm=marker
 * vim<600: sw=4 ts=4
 */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to