/* * dnsutl - utilities to make DNS easier to configure * Copyright (C) 1999, 2006, 2007 Peter Miller * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see * . */ #ifndef COMMON_MAP_ETHER_H #define COMMON_MAP_ETHER_H #include typedef struct map_ether_t map_ether_t; struct map_ether_t { string_ty *address; string_ty *name; }; map_ether_t *map_ether_new(void); void map_ether_delete(map_ether_t *); void map_ether_open(const char *); map_ether_t *map_ether_read(void); void map_ether_close(void); #endif /* COMMON_MAP_ETHER_H */