Functions | |
AXIS2_EXTERN int | w2c_string_indexof (axis2_char_t *str, axis2_char_t c) |
AXIS2_EXTERN int | w2c_string_indexof_cs (axis2_char_t *str, axis2_char_t *cs) |
AXIS2_EXTERN axis2_char_t * | w2c_string_add_string (axis2_char_t *string1, axis2_char_t *string2, const axis2_env_t *env) |
AXIS2_EXTERN axis2_char_t * | w2c_string_make_c_simple_name (axis2_char_t *name, const axis2_env_t *env) |
AXIS2_EXTERN axis2_char_t * | w2c_string_make_c_macro_name (axis2_char_t *name, const axis2_env_t *env) |
AXIS2_EXTERN axis2_char_t * | w2c_string_make_key_from_qname (axis2_qname_t *qname, const axis2_env_t *env) |
AXIS2_EXTERN axis2_char_t* w2c_string_add_string | ( | axis2_char_t * | string1, | |
axis2_char_t * | string2, | |||
const axis2_env_t * | env | |||
) |
if string1 is NULL new string created otherwise add string2 to string1.
env | pointer to the environment. MUST NOT be NULL | |
string1 | string | |
string2 | string |
AXIS2_EXTERN int w2c_string_indexof | ( | axis2_char_t * | str, | |
axis2_char_t | c | |||
) |
gives the index of the given axis2_char_tacter in its first occurrence.
str | string operation apply | |
c | character |
AXIS2_EXTERN int w2c_string_indexof_cs | ( | axis2_char_t * | str, | |
axis2_char_t * | cs | |||
) |
gives the index of the given axis2_char_tacters in its first occurrence.
str | string operation apply | |
cs | characters |
AXIS2_EXTERN axis2_char_t* w2c_string_make_c_macro_name | ( | axis2_char_t * | name, | |
const axis2_env_t * | env | |||
) |
convert given name to an axis2/c convension macro name ie whenver the case change '_' is placed between all letters convert to capital.
name | name to convert | |
env | pointer to the environment. MUST NOT be NULL |
AXIS2_EXTERN axis2_char_t* w2c_string_make_c_simple_name | ( | axis2_char_t * | name, | |
const axis2_env_t * | env | |||
) |
convert given name to an axis2/c convension ie whenver the case change '_' is placed between all letters convert to simple.
name | name to convert | |
env | pointer to the environment. MUST NOT be NULL |
AXIS2_EXTERN axis2_char_t* w2c_string_make_key_from_qname | ( | axis2_qname_t * | qname, | |
const axis2_env_t * | env | |||
) |
get a hash key from the qname.
qname | qname to make the key | |
env | pointer to the environment. MUST NOT be NULL |