NonStop SOAP 4.1 User's Manual

Parameters:
env
is an input parameter and is a pointer to the environment structure. It cannot have a NULL
value.
s1
is the first string.
s2
is the second string.
Return Values:
This function returns the new string.
The axutil_strcat() Function
Synopsis:
AXIS2_EXTERN axis2_char_t* axutil_strcat
( const axutil_env_t * env,
... )
Description:
This function concatenates multiple strings.
Parameters:
env
is an input parameter and is a pointer to the environment structure. It cannot have a NULL
value.
...
strings, separated by commas, to be concatenated.
Return Values:
This function returns the new string.
The axutil_strstr() Function
Synopsis:
AXIS2_EXTERN axis2_char_t * axutil_strstr
(const axis2_char_t *haystack,
const axis2_char_t *needle)
Description:
This function finds finds the first occurrence of the substring needle in the string haystack.
Parameters:
haystack
is the string in which the given string is to be found.
needle
is the string to be found in haystack.
Return Values:
This function returns pointer to the beginning of the substring, or NULL if the substring is not found.
The axutil_strcasestr() Function
Synopsis:
AXIS2_EXTERN axis2_char_t* axutil_strcasestr
( const axis2_char_t * haystack,
const axis2_char_t * needle )
Utilities 383