Real Vim Hacks Project - Humanity mbstrlen()に続いてwcwidth()も実装してみた。 id:mattnさんがwcwidth()がほしいと言っていたのでmbyte.cとか見てみたらmbstrlen()と同じく関数が用意されていたのであっさり追加。 今回いろいろとmbyte.cに触れたのでいろいろと分かったことをまとめる。 mbyte.c mb_init() 624行目から抜粋 /* * Set the function pointers. */ if (enc_utf8) { mb_ptr2len = utfc_ptr2len; mb_ptr2len_len = utfc_ptr2len_len; mb_char2len = utf_char2len; mb_char2bytes = utf_char2bytes; mb_ptr2cells =

