]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | ********************************************************************** | |
3 | * Copyright (C) 2001-2003 IBM and others. All rights reserved. | |
4 | ********************************************************************** | |
5 | * Date Name Description | |
6 | * 06/28/2001 synwee Creation. | |
7 | ********************************************************************** | |
8 | */ | |
9 | #ifndef USEARCH_H | |
10 | #define USEARCH_H | |
11 | ||
12 | #include "unicode/utypes.h" | |
13 | ||
14 | #if !UCONFIG_NO_COLLATION | |
15 | ||
16 | #include "unicode/ucol.h" | |
17 | #include "unicode/ucoleitr.h" | |
18 | #include "unicode/ubrk.h" | |
19 | ||
20 | /** | |
21 | * \file | |
22 | * \brief C API: StringSearch | |
23 | * | |
24 | * C Apis for an engine that provides language-sensitive text searching based | |
25 | * on the comparison rules defined in a <tt>UCollator</tt> data struct, | |
26 | * see <tt>ucol.h</tt>. This ensures that language eccentricity can be | |
27 |