diff options
author | Stig Bakken <ssb@php.net> | 1999-06-15 21:51:00 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-06-15 21:51:00 +0000 |
commit | 8c4411b5da9bf6385e35ad8c0a835f6ffe656203 (patch) | |
tree | 54e58e0c570cf771d2986520d5045f62299ab58d /ext/standard/php3_string.h | |
parent | f86fb810a022d9490cb96e63993a14c5236d9f7d (diff) | |
download | php-git-8c4411b5da9bf6385e35ad8c0a835f6ffe656203.tar.gz |
* reverse fsock/string import patches
Diffstat (limited to 'ext/standard/php3_string.h')
-rw-r--r-- | ext/standard/php3_string.h | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/ext/standard/php3_string.h b/ext/standard/php3_string.h index 0de055e0bc..221c8e72d7 100644 --- a/ext/standard/php3_string.h +++ b/ext/standard/php3_string.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP HTML Embedded Scripting Language Version 3.0 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-1999 PHP Development Team (See Credits file) | + | Copyright (c) 1997,1998 PHP Development Team (See Credits file) | +----------------------------------------------------------------------+ | This program is free software; you can redistribute it and/or modify | | it under the terms of one of the following licenses: | @@ -24,7 +24,7 @@ | contact core@php.net. | +----------------------------------------------------------------------+ | Authors: Rasmus Lerdorf <rasmus@lerdorf.on.ca> | - | Stig Sæther Bakken <ssb@fast.no> | + | Stig Sæther Bakken <ssb@guardian.no> | +----------------------------------------------------------------------+ */ @@ -47,8 +47,7 @@ PHP_FUNCTION(str_replace); PHP_FUNCTION(chop); PHP_FUNCTION(trim); PHP_FUNCTION(ltrim); -PHP_FUNCTION(similar_text); -extern void soundex(INTERNAL_FUNCTION_PARAMETERS); +void soundex(INTERNAL_FUNCTION_PARAMETERS); PHP_FUNCTION(explode); PHP_FUNCTION(implode); @@ -79,30 +78,15 @@ PHP_FUNCTION(newline_to_br); PHP_FUNCTION(setlocale); PHP_FUNCTION(stristr); PHP_FUNCTION(chunk_split); -PHP_FUNCTION(strip_tags); PHP_FUNCTION(parsestr); PHP_FUNCTION(bin2hex); -#if HAVE_CRYPT -extern php3_module_entry crypt_module_entry; -#define crypt_module_ptr &crypt_module_entry -PHP_FUNCTION(crypt); -extern int php3_minit_crypt(INIT_FUNC_ARGS); -#else -#define crypt_module_ptr NULL -#endif - extern PHPAPI char *_php3_strtoupper(char *s); extern PHPAPI char *_php3_strtolower(char *s); -extern PHPAPI char *_php3_strtr(char *string, int len, char *str_from, char *str_to, int trlen); +extern char *_StrTr(char *string, char *str_from, char *str_to); extern PHPAPI char *_php3_addslashes(char *string, int length, int *new_length, int freeit); extern PHPAPI void _php3_stripslashes(char *string, int *len); extern PHPAPI void _php3_dirname(char *str, int len); extern PHPAPI char *php3i_stristr(unsigned char *s, unsigned char *t); -extern PHPAPI void _php3_trim(pval *str, pval * return_value); -extern PHPAPI void _php3_strip_tags(char *rbuf, int state); -extern PHPAPI void _php3_char_to_str(char *str,uint len,char from,char *to,int to_len,pval *result); -extern PHPAPI void _php3_implode(pval *delim, pval *arr, pval *return_value); -extern PHPAPI void _php3_explode(pval *delim, pval *str, pval *return_value); #endif /* _PHPSTRING_H */ |