(byte_table_same_value_p): Use `internal_equal' instead of `EQ'.
[chise/xemacs-chise.git-] / src / mb-utf-8.h
index 9e83ef1..a683e7a 100644 (file)
@@ -36,7 +36,8 @@ Boston, MA 02111-1307, USA.  */
 
 /* Does this byte represent the first byte of a character? */
 
-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);
@@ -52,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 )
@@ -70,4 +71,7 @@ REP_BYTES_BY_FIRST_BYTE (int fb)
     return 6;
 }
 
+
+#include "mb-multibyte.h"
+
 #endif /* _XEMACS_MB_UTF_8_H */