move signal.c into lib/sys
[apps/madmutt.git] / lib-lib / mapping.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 /*
21  * Copyright notice from original mutt:
22  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
23  *
24  * Parts were written/modified by:
25  * Rocco Rutte <pdmef@cs.tu-berlin.de>
26  *
27  * This file is part of mutt-ng, see http://www.muttng.org/.
28  * It's licensed under the GNU General Public License,
29  * please see the file GPL in the top level source directory.
30  */
31
32 #include <stdlib.h>
33
34 #include "mapping.h"
35 #include "ascii.h"
36
37 const char *mutt_getnamebyvalue(int val, const struct mapping_t *map)
38 {
39     int i;
40
41     for (i = 0; map[i].name; i++)
42         if (map[i].value == val)
43             return (map[i].name);
44
45     return NULL;
46 }
47
48 int mutt_getvaluebyname(const char *name, const struct mapping_t *map)
49 {
50     int i;
51
52     for (i = 0; map[i].name; i++)
53         if (ascii_strcasecmp (map[i].name, name) == 0)
54             return (map[i].value);
55
56     return -1;
57 }
58