Make vinum use libedit instead of libreadline.
[dragonfly.git] / contrib / ncurses-5.4 / ncurses / tinfo / add_tries.c
blobf83249ccf01a7025fe5f8ccb45379c4d520c9a07
1 /****************************************************************************
2 * Copyright (c) 1998,2000 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Thomas E. Dickey <dickey@clark.net> 1998 *
31 ****************************************************************************/
34 ** add_tries.c
36 ** Add keycode/string to tries-tree.
40 #include <curses.priv.h>
42 MODULE_ID("$Id: add_tries.c,v 1.4 2000/12/10 02:55:07 tom Exp $")
44 #define SET_TRY(dst,src) if ((dst->ch = *src++) == 128) dst->ch = '\0'
45 #define CMP_TRY(a,b) ((a)? (a == b) : (b == 128))
47 NCURSES_EXPORT(void)
48 _nc_add_to_try(struct tries **tree, const char *str, unsigned short code)
50 static bool out_of_memory = FALSE;
51 struct tries *ptr, *savedptr;
52 unsigned const char *txt = (unsigned const char *) str;
54 if (txt == 0 || *txt == '\0' || out_of_memory || code == 0)
55 return;
57 if ((*tree) != 0) {
58 ptr = savedptr = (*tree);
60 for (;;) {
61 unsigned char cmp = *txt;
63 while (!CMP_TRY(ptr->ch, cmp)
64 && ptr->sibling != 0)
65 ptr = ptr->sibling;
67 if (CMP_TRY(ptr->ch, cmp)) {
68 if (*(++txt) == '\0') {
69 ptr->value = code;
70 return;
72 if (ptr->child != 0)
73 ptr = ptr->child;
74 else
75 break;
76 } else {
77 if ((ptr->sibling = typeCalloc(struct tries, 1)) == 0) {
78 out_of_memory = TRUE;
79 return;
82 savedptr = ptr = ptr->sibling;
83 SET_TRY(ptr, txt);
84 ptr->value = 0;
86 break;
88 } /* end for (;;) */
89 } else { /* (*tree) == 0 :: First sequence to be added */
90 savedptr = ptr = (*tree) = typeCalloc(struct tries, 1);
92 if (ptr == 0) {
93 out_of_memory = TRUE;
94 return;
97 SET_TRY(ptr, txt);
98 ptr->value = 0;
101 /* at this point, we are adding to the try. ptr->child == 0 */
103 while (*txt) {
104 ptr->child = typeCalloc(struct tries, 1);
106 ptr = ptr->child;
108 if (ptr == 0) {
109 out_of_memory = TRUE;
111 while ((ptr = savedptr) != 0) {
112 savedptr = ptr->child;
113 free(ptr);
116 return;
119 SET_TRY(ptr, txt);
120 ptr->value = 0;
123 ptr->value = code;
124 return;