unicode: move utf8cursor to utf8-selftest.c
authorChristoph Hellwig <hch@lst.de>
Wed, 15 Sep 2021 07:00:03 +0000 (09:00 +0200)
committerGabriel Krisman Bertazi <krisman@collabora.com>
Mon, 11 Oct 2021 20:01:58 +0000 (17:01 -0300)
Only used by the tests, so no need to keep it in the core.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
fs/unicode/utf8-norm.c
fs/unicode/utf8-selftest.c
fs/unicode/utf8n.h

index 348d6e97553f2209f6d8cb225842486ec93460e4..1ac90fa00070d44a201d4c901aa269d602092cdd 100644 (file)
@@ -456,22 +456,6 @@ int utf8ncursor(struct utf8cursor *u8c, const struct utf8data *data,
 }
 EXPORT_SYMBOL(utf8ncursor);
 
-/*
- * Set up an utf8cursor for use by utf8byte().
- *
- *   u8c    : pointer to cursor.
- *   data   : const struct utf8data to use for normalization.
- *   s      : NUL-terminated string.
- *
- * Returns -1 on error, 0 on success.
- */
-int utf8cursor(struct utf8cursor *u8c, const struct utf8data *data,
-              const char *s)
-{
-       return utf8ncursor(u8c, data, s, (unsigned int)-1);
-}
-EXPORT_SYMBOL(utf8cursor);
-
 /*
  * Get one byte from the normalized form of the string described by u8c.
  *
index 80fb7c75acb2800f535c97e99c455961fa77fa7a..04628b50351d3ee8f228fe5208620ff1cef2079c 100644 (file)
@@ -165,6 +165,12 @@ static ssize_t utf8len(const struct utf8data *data, const char *s)
        return utf8nlen(data, s, (size_t)-1);
 }
 
+static int utf8cursor(struct utf8cursor *u8c, const struct utf8data *data,
+               const char *s)
+{
+       return utf8ncursor(u8c, data, s, (unsigned int)-1);
+}
+
 static void check_utf8_nfdi(void)
 {
        int i;
index 41182e5464dfae2a8c7eb10f3121c9da251fefd9..736b6460a38cbeefb0024337b7b94bdb4e7b0b85 100644 (file)
@@ -65,8 +65,6 @@ struct utf8cursor {
  * Returns 0 on success.
  * Returns -1 on failure.
  */
-extern int utf8cursor(struct utf8cursor *u8c, const struct utf8data *data,
-                     const char *s);
 extern int utf8ncursor(struct utf8cursor *u8c, const struct utf8data *data,
                       const char *s, size_t len);