mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
13 lines
261 B
C
13 lines
261 B
C
|
#ifndef UNICODE_UTIL_H
|
||
|
#define UNICODE_UTIL_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <gmodule.h>
|
||
|
|
||
|
/* The utf8 encoded string would tokenize as a single word, according
|
||
|
* to xapian. */
|
||
|
bool unicode_word_utf8 (const char *str);
|
||
|
typedef gunichar notmuch_unichar;
|
||
|
|
||
|
#endif
|