mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-02-02 03:38:43 -05:00
11 lines
242 B
C
11 lines
242 B
C
#ifndef TOKENIZER_UTIL_H
|
|
#define TOKENIZER_UTIL_H
|
|
|
|
#include "../utf8.h"
|
|
|
|
UChar32 normal_to_superscript_codepoint(UChar32 c); //returns 0 if there is none
|
|
UChar32 normal_to_subscript_codepoint(UChar32 c); //returns 0 if there is none
|
|
|
|
|
|
#endif
|