| parrotcode: String Primitives | |
| Contents | C |

src/string_primitives.c - String Primitives

This file collects together all the functions that call into the ICU API.

void string_set_data_directory(const char *dir)void string_fill_from_buffer(Interp *interpreter, const void *buffer, UINTVAL len, const char *encoding_name, STRING *s)
UINTVAL Parrot_char_digit_value(Interp *interpreter, UINTVAL character)Parrot_char_digit_value() can correctly return the decimal digit value of characters for which Parrot_char_is_digit() returns false.INTVAL Parrot_char_is_alnum(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_alpha(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_ascii(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_blank(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_cntrl(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_digit(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_graph(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_lower(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_print(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_punct(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_space(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_UWhiteSpace(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_Whitespace(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_JavaSpaceChar(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_upper(Interp *interpreter, UINTVAL character)INTVAL Parrot_char_is_xdigit(Interp *interpreter, UINTVAL character)
|
|
|