(MULTIBYTE): New macro.
authortomo <tomo>
Fri, 3 Sep 1999 22:59:10 +0000 (22:59 +0000)
committertomo <tomo>
Fri, 3 Sep 1999 22:59:10 +0000 (22:59 +0000)
(MAX_EMCHAR_LEN): Moved from buffer.h.
(REP_BYTES_BY_FIRST_BYTE): Moved from char-ucs.h.

src/mb-utf-8.h

index 73d8454..1bd1a80 100644 (file)
@@ -24,6 +24,11 @@ Boston, MA 02111-1307, USA.  */
 #ifndef _XEMACS_MB_UTF_8_H
 #define _XEMACS_MB_UTF_8_H
 
+#define MULTIBYTE
+
+/* Maximum number of buffer bytes per Emacs character. */
+#define MAX_EMCHAR_LEN 6
+
 /************************************************************************/
 /*                     Operations on individual bytes                   */
 /*                       in a Mule-formatted string                     */
@@ -46,4 +51,23 @@ 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)
+{
+  if ( fb < 0xc0 )
+    return 1;
+  else if ( fb < 0xe0 )
+    return 2;
+  else if ( fb < 0xf0 )
+    return 3;
+  else if ( fb < 0xf8 )
+    return 4;
+  else if ( fb < 0xfc )
+    return 5;
+  else
+    return 6;
+}
+
 #endif /* _XEMACS_MB_UTF_8_H */