Commit:    3d0857938d86b279e932de0558c3f4877e49bcec
Author:    Gustavo Lopes <glo...@nebm.ist.utl.pt>         Sun, 26 Aug 2012 
19:44:05 +0200
Parents:   8831b000cab7103e25fc2acf224d0009ef0646d4
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=3d0857938d86b279e932de0558c3f4877e49bcec

Log:
zend_binary_strncasecmp_l used w/out declaration

Changed paths:
  M  Zend/zend_operators.h


Diff:
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index d28140e..08a6b19 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -340,6 +340,7 @@ ZEND_API int zend_binary_strcmp(const char *s1, uint len1, 
const char *s2, uint
 ZEND_API int zend_binary_strncmp(const char *s1, uint len1, const char *s2, 
uint len2, uint length);
 ZEND_API int zend_binary_strcasecmp(const char *s1, uint len1, const char *s2, 
uint len2);
 ZEND_API int zend_binary_strncasecmp(const char *s1, uint len1, const char 
*s2, uint len2, uint length);
+ZEND_API int zend_binary_strncasecmp_l(const char *s1, uint len1, const char 
*s2, uint len2, uint length);
 
 ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2);
 ZEND_API void zend_compare_symbol_tables(zval *result, HashTable *ht1, 
HashTable *ht2 TSRMLS_DC);


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

Reply via email to