Sha256: b33ccfb58ffa01cf2dfc06be447f127edfbbfa4506ae521ba20ff62445197912

Contents?: true

Size: 1.42 KB

Versions: 3

Compression:

Stored size: 1.42 KB

Contents

#include "yarp/enc/yp_encoding.h"

static size_t
yp_encoding_shift_jis_char_width(const uint8_t *b, ptrdiff_t n) {
    // These are the single byte characters.
    if (*b < 0x80 || (*b >= 0xA1 && *b <= 0xDF)) {
        return 1;
    }

    // These are the double byte characters.
    if (
        (n > 1) &&
        ((b[0] >= 0x81 && b[0] <= 0x9F) || (b[0] >= 0xE0 && b[0] <= 0xFC)) &&
        (b[1] >= 0x40 && b[1] <= 0xFC)
    ) {
        return 2;
    }

    return 0;
}

static size_t
yp_encoding_shift_jis_alpha_char(const uint8_t *b, ptrdiff_t n) {
    if (yp_encoding_shift_jis_char_width(b, n) == 1) {
        return yp_encoding_ascii_alpha_char(b, n);
    } else {
        return 0;
    }
}

static size_t
yp_encoding_shift_jis_alnum_char(const uint8_t *b, ptrdiff_t n) {
    if (yp_encoding_shift_jis_char_width(b, n) == 1) {
        return yp_encoding_ascii_alnum_char(b, n);
    } else {
        return 0;
    }
}

static bool
yp_encoding_shift_jis_isupper_char(const uint8_t *b, ptrdiff_t n) {
    if (yp_encoding_shift_jis_char_width(b, n) == 1) {
        return yp_encoding_ascii_isupper_char(b, n);
    } else {
        return 0;
    }
}

yp_encoding_t yp_encoding_shift_jis = {
    .name = "shift_jis",
    .char_width = yp_encoding_shift_jis_char_width,
    .alnum_char = yp_encoding_shift_jis_alnum_char,
    .alpha_char = yp_encoding_shift_jis_alpha_char,
    .isupper_char = yp_encoding_shift_jis_isupper_char,
    .multibyte = true
};

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yarp-0.12.0 src/enc/yp_shift_jis.c
yarp-0.11.0 src/enc/yp_shift_jis.c
yarp-0.10.0 src/enc/yp_shift_jis.c