X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fmb-utf-8.h;h=c895a0608a2f6fb003863049799c8865550cb0d1;hb=d35528ab24dc4894726d0d6d94dadd097ba3bbc6;hp=9e83ef148eedbe566b2febbd8a811d503cb75ab9;hpb=020cf4befb4fe6804c543f8f371b44d3afe2d0b6;p=chise%2Fxemacs-chise.git diff --git a/src/mb-utf-8.h b/src/mb-utf-8.h index 9e83ef1..c895a06 100644 --- a/src/mb-utf-8.h +++ b/src/mb-utf-8.h @@ -34,12 +34,13 @@ Boston, MA 02111-1307, USA. */ /* in a Mule-formatted string */ /************************************************************************/ -/* Does this byte represent the first byte of a character? */ +/* Does BYTE represent the first byte of a character? */ -INLINE int -BUFBYTE_FIRST_BYTE_P(Bufbyte c) +INLINE_HEADER int BUFBYTE_FIRST_BYTE_P(Bufbyte byte); +INLINE_HEADER int +BUFBYTE_FIRST_BYTE_P(Bufbyte byte) { - return (c <= 0x7f) || (0xc0 <= c); + return (byte <= 0x7F) || (0xC0 <= byte); } @@ -52,22 +53,25 @@ BUFBYTE_FIRST_BYTE_P(Bufbyte c) #define CHAR_MULTIBYTE_P(c) ((c) >= 0x80) -INLINE int REP_BYTES_BY_FIRST_BYTE (int fb); -INLINE int -REP_BYTES_BY_FIRST_BYTE (int fb) +INLINE_HEADER int REP_BYTES_BY_FIRST_BYTE (Bufbyte fb); +INLINE_HEADER int +REP_BYTES_BY_FIRST_BYTE (Bufbyte fb) { - if ( fb < 0xc0 ) + if ( fb < 0xC0 ) return 1; - else if ( fb < 0xe0 ) + else if ( fb < 0xE0 ) return 2; - else if ( fb < 0xf0 ) + else if ( fb < 0xF0 ) return 3; - else if ( fb < 0xf8 ) + else if ( fb < 0xF8 ) return 4; - else if ( fb < 0xfc ) + else if ( fb < 0xFC ) return 5; else return 6; } + +#include "mb-multibyte.h" + #endif /* _XEMACS_MB_UTF_8_H */