X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fmb-utf-8.h;h=a683e7afc66e2065dc0013e14aad3c40992a5a54;hb=3aca7317dd930beecbddba646284279744087e69;hp=9d66ccb34c061baf31556aa3033d2ec85389cbf8;hpb=c8aa261a7bf3eb1389d2e018be1d715f73cacd66;p=chise%2Fxemacs-chise.git- diff --git a/src/mb-utf-8.h b/src/mb-utf-8.h index 9d66ccb..a683e7a 100644 --- a/src/mb-utf-8.h +++ b/src/mb-utf-8.h @@ -36,8 +36,8 @@ Boston, MA 02111-1307, USA. */ /* Does this byte represent the first byte of a character? */ -INLINE int BUFBYTE_FIRST_BYTE_P(Bufbyte c); -INLINE int +INLINE_HEADER int BUFBYTE_FIRST_BYTE_P(Bufbyte c); +INLINE_HEADER int BUFBYTE_FIRST_BYTE_P(Bufbyte c) { return (c <= 0x7f) || (0xc0 <= c); @@ -53,8 +53,8 @@ BUFBYTE_FIRST_BYTE_P(Bufbyte c) #define CHAR_MULTIBYTE_P(c) ((c) >= 0x80) -INLINE int REP_BYTES_BY_FIRST_BYTE (int fb); -INLINE int +INLINE_HEADER int REP_BYTES_BY_FIRST_BYTE (int fb); +INLINE_HEADER int REP_BYTES_BY_FIRST_BYTE (int fb) { if ( fb < 0xc0 )