1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
/* Copyright (C) 2016 Thorsten Kukuk
Author: Thorsten Kukuk <kukuk@suse.de>
This library is free software: you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
in version 2.1 as published by the Free Software Foundation.
This library 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 <http://www.gnu.org/licenses/>. */
#ifndef _YPBIND3_BINDING_H_
#define _YPBIND3_BINDING_H_
extern struct ypbind3_binding *__host2ypbind3_binding (const char *__host);
extern struct ypbind3_binding *__ypbind3_binding_dup (struct ypbind3_binding *__src);
extern void __ypbind3_binding_free (struct ypbind3_binding *ypb);
#endif /* _YPBIND3_BINDING_H_ */
|