1 /****************************************************************************
2 * Copyright (c) 1998-2012,2015 Free Software Foundation, Inc. *
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: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
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. *
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 *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Juergen Pfeifer, 1995,1997 *
31 ****************************************************************************/
33 /***************************************************************************
34 * Module form_request_name *
35 * Routines to handle external names of menu requests *
36 ***************************************************************************/
38 #include "form.priv.h"
40 MODULE_ID("$Id: frm_req_name.c,v 1.19 2015/04/04 17:11:46 tom Exp $")
44 static const char request_names
[MAX_FORM_COMMAND
- MIN_FORM_COMMAND
+ 1][13] =
111 #define A_SIZE (sizeof(request_names)/sizeof(request_names[0]))
113 /*---------------------------------------------------------------------------
114 | Facility : libnform
115 | Function : const char * form_request_name (int request);
117 | Description : Get the external name of a form request.
119 | Return Values : Pointer to name - on success
120 | NULL - on invalid request code
121 +--------------------------------------------------------------------------*/
122 NCURSES_EXPORT(const char *)
123 form_request_name(int request
)
125 T((T_CALLED("form_request_name(%d)"), request
));
127 if ((request
< MIN_FORM_COMMAND
) || (request
> MAX_FORM_COMMAND
))
129 SET_ERROR(E_BAD_ARGUMENT
);
130 returnCPtr((const char *)0);
133 returnCPtr(request_names
[request
- MIN_FORM_COMMAND
]);
136 /*---------------------------------------------------------------------------
137 | Facility : libnform
138 | Function : int form_request_by_name (const char *str);
140 | Description : Search for a request with this name.
142 | Return Values : Request Id - on success
143 | E_NO_MATCH - request not found
144 +--------------------------------------------------------------------------*/
146 form_request_by_name(const char *str
)
148 /* because the table is so small, it doesn't really hurt
149 to run sequentially through it.
152 char buf
[16]; /* longest name is 10 chars */
154 T((T_CALLED("form_request_by_name(%s)"), _nc_visbuf(str
)));
156 if (str
!= 0 && (i
= strlen(str
)) != 0)
158 if (i
> sizeof(buf
) - 2)
163 for (i
= 0; buf
[i
] != '\0'; ++i
)
165 buf
[i
] = (char)toupper(UChar(buf
[i
]));
168 for (i
= 0; i
< A_SIZE
; i
++)
170 if (strcmp(request_names
[i
], buf
) == 0)
171 returnCode(MIN_FORM_COMMAND
+ (int)i
);
177 /* frm_req_name.c ends here */