e426c788a803064223d315c2be4dea62bad5586b
[platform/upstream/libdatrie.git] / tests / utils.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * libdatrie - Double-Array Trie Library
4  * Copyright (C) 2013  Theppitak Karoonboonyanan <theppitak@gmail.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 /*
22  * utils.h - Utility functions for datrie test cases
23  * Created: 2013-10-16
24  * Author:  Theppitak Karoonboonyanan <theppitak@gmail.com>
25  */
26
27 #include <datrie/trie.h>
28
29 /*---------------------*
30  *  Debugging helpers  *
31  *---------------------*/
32 void msg_step (const char *msg);
33
34 /*-------------------------*
35  *  Trie creation helpers  *
36  *-------------------------*/
37 Trie * en_trie_new ();
38
39 /*---------------------------*
40  *  Dict source for testing  *
41  *---------------------------*/
42 typedef struct _DictRec DictRec;
43 struct _DictRec {
44     AlphaChar *key;
45     TrieData   data;
46 };
47
48 #define TRIE_DATA_UNREAD    1
49 #define TRIE_DATA_READ      2
50
51 extern DictRec dict_src[];
52
53 int      dict_src_n_entries ();
54 TrieData dict_src_get_data (const AlphaChar *key);
55 int      dict_src_set_data (const AlphaChar *key, TrieData data);
56
57 /*
58 vi:ts=4:ai:expandtab
59 */