mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
This is needed for BSD (FreeBSD, BSDi and possibly others), problem
was indentified by Melvyn Sopacua.
This commit is contained in:
parent
fdd2cb6024
commit
9526ca998d
1 changed files with 2 additions and 2 deletions
|
@ -984,7 +984,7 @@ restore:
|
||||||
*/
|
*/
|
||||||
PHPAPI char *php_strtoupper(char *s, size_t len)
|
PHPAPI char *php_strtoupper(char *s, size_t len)
|
||||||
{
|
{
|
||||||
char *c, *e;
|
unsigned char *c, *e;
|
||||||
|
|
||||||
c = s;
|
c = s;
|
||||||
e = c+len;
|
e = c+len;
|
||||||
|
@ -1018,7 +1018,7 @@ PHP_FUNCTION(strtoupper)
|
||||||
*/
|
*/
|
||||||
PHPAPI char *php_strtolower(char *s, size_t len)
|
PHPAPI char *php_strtolower(char *s, size_t len)
|
||||||
{
|
{
|
||||||
char *c, *e;
|
unsigned char *c, *e;
|
||||||
|
|
||||||
c = s;
|
c = s;
|
||||||
e = c+len;
|
e = c+len;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue