return (char *) normalized;
}
+/**
+ * Counts the number of UTF-8 characters (not bytes) in the string,
+ * returns that count.
+ */
+static size_t
+u8_strcount (const uint8_t *s)
+{
+ size_t count;
+ ucs4_t c;
+ GNUNET_assert (s != NULL);
+ if (s[0] == 0)
+ return 0;
+ for (count = 0; s != NULL; count++)
+ s = u8_next (&c, s);
+ return count - 1;
+}
+
/**
* Break the filename up by matching [], () and {} pairs to make
tmp = close_paren[0];
close_paren[0] = '\0';
/* Keywords must be at least 3 characters long */
- if (u8_strlen ((const uint8_t *) &open_paren[1]) <= 2)
+ if (u8_strcount ((const uint8_t *) &open_paren[1]) <= 2)
{
close_paren[0] = tmp;
continue;
for (p = strtok (ss, TOKENS); p != NULL; p = strtok (NULL, TOKENS))
{
/* Keywords must be at least 3 characters long */
- if (u8_strlen ((const uint8_t *) p) <= 2)
+ if (u8_strcount ((const uint8_t *) p) <= 2)
continue;
if (NULL != array)
{
* and will return the length of its valid part, skipping the keyword.
* If it does - fix the extractor, not this check!
*/
- if (u8_strlen ((const uint8_t *) data) <= 2)
+ if (u8_strcount ((const uint8_t *) data) <= 2)
{
return 0;
}