NAME ^

src/charset/binary.c

DESCRIPTION ^

This file implements the charset functions for binary data

static void set_graphemes(PARROT_INTERP, NOTNULL(STRING *source_string), UINTVAL offset, UINTVAL replace_count, NOTNULL(STRING *insert_string))

TODO: Not yet documented!!!

static STRING *to_charset(PARROT_INTERP, NOTNULL(STRING *src), NOTNULL(STRING *dest))

TODO: Not yet documented!!!

static STRING *compose(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static STRING *decompose(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static void upcase(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static void downcase(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static void titlecase(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static void upcase_first(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static void downcase_first(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static void titlecase_first(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static INTVAL compare(PARROT_INTERP, SHIM(const STRING *lhs), SHIM(const STRING *rhs))

TODO: Not yet documented!!!

static INTVAL cs_index(PARROT_INTERP, SHIM(STRING *source_string), SHIM(STRING *search_string), UINTVAL offset)

TODO: Not yet documented!!!

static INTVAL cs_rindex(PARROT_INTERP, SHIM(STRING *source_string), SHIM(STRING *search_string), UINTVAL offset)

TODO: Not yet documented!!!

static UINTVAL validate(PARROT_INTERP, SHIM(STRING *source_string))

TODO: Not yet documented!!!

static INTVAL is_cclass(PARROT_INTERP, INTVAL flags, SHIM(STRING *source_string), UINTVAL offset)

TODO: Not yet documented!!!

static INTVAL find_cclass(PARROT_INTERP, INTVAL flags, NOTNULL(STRING *source_string), UINTVAL offset, UINTVAL count)

TODO: Not yet documented!!!

static INTVAL find_not_cclass(PARROT_INTERP, INTVAL flags, NOTNULL(STRING *source_string), UINTVAL offset, UINTVAL count)

TODO: Not yet documented!!!

static STRING *string_from_codepoint(PARROT_INTERP, UINTVAL codepoint)

TODO: Not yet documented!!!

PARROT_CANNOT_RETURN_NULL const CHARSET *Parrot_charset_binary_init(PARROT_INTERP)

TODO: Not yet documented!!!


parrot