@@ -11,11 +11,10 @@ #include #include #import "OFObject.h" -#import "OFArray.h" typedef uint32_t of_unichar_t; enum of_string_encoding { OF_STRING_ENCODING_UTF_8, @@ -27,10 +26,12 @@ extern int of_string_check_utf8(const char*, size_t); extern size_t of_string_unicode_to_utf8(of_unichar_t, char*); extern size_t of_string_utf8_to_unicode(const char*, size_t, of_unichar_t*); extern size_t of_string_position_to_index(const char*, size_t); extern size_t of_string_index_to_position(const char*, size_t, size_t); + +@class OFArray; /** * A class for managing strings. */ @interface OFString: OFObject