* src/vm/utf8.c, src/vm/utf8.h (utf_bytes): New function.
[cacao.git] / src / vm / utf8.c
index 0c854744edc2b0e422eb808d9dad43689dae8ffc..89c9d4600ee1e0015c445b7786b2ae3699640d74 100644 (file)
@@ -30,7 +30,7 @@
             Andreas Krall
             Christian Thalinger
 
-   $Id: utf8.c 4872 2006-05-05 13:48:25Z edwin $
+   $Id: utf8.c 4873 2006-05-05 13:56:35Z edwin $
 
 */
 
@@ -790,6 +790,24 @@ u2 utf_nextu2(char **utf_ptr)
 }
 
 
+/* utf_bytes *******************************************************************
+
+   Determine number of bytes (aka. octets) in the utf string.
+
+   IN:
+      u............utf string
+
+   OUT:
+      The number of octets of this utf string.
+         There is _no_ terminating zero included in this count.
+
+*******************************************************************************/
+
+u4 utf_bytes(utf *u)
+{
+       return u->blength;
+}
+
 /* utf_get_number_of_u2s *******************************************************
 
    Determine number of UTF-16 u2s in the utf string.