advcap.h revision 55505
155505Sshin/*
255505Sshin * Copyright (C) 1994,1995 by Andrey A. Chernov, Moscow, Russia.
355505Sshin * All rights reserved.
455505Sshin *
555505Sshin * Redistribution and use in source and binary forms, with or without
655505Sshin * modification, are permitted provided that the following conditions
755505Sshin * are met:
855505Sshin * 1. Redistributions of source code must retain the above copyright
955505Sshin *    notice, this list of conditions and the following disclaimer.
1055505Sshin * 2. Redistributions in binary form must reproduce the above copyright
1155505Sshin *    notice, this list of conditions and the following disclaimer in the
1255505Sshin *    documentation and/or other materials provided with the distribution.
1355505Sshin *
1455505Sshin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
1555505Sshin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1655505Sshin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1755505Sshin * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
1855505Sshin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1955505Sshin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2055505Sshin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2155505Sshin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2255505Sshin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2355505Sshin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2455505Sshin * SUCH DAMAGE.
2555505Sshin *
2655505Sshin * $FreeBSD: head/usr.sbin/rtadvd/advcap.h 55505 2000-01-06 12:40:54Z shin $
2755505Sshin */
2855505Sshin
2955505Sshin/* Based on Id: termcap.h,v 1.8 1996/09/10 12:42:10 peter Exp */
3055505Sshin
3155505Sshin#ifndef _ADVCAP_H_
3255505Sshin#define _ADVCAP_H_
3355505Sshin
3455505Sshin#include <sys/cdefs.h>
3555505Sshin
3655505Sshin__BEGIN_DECLS
3755505Sshin
3855505Sshinextern int	agetent __P((char *, const char *));
3955505Sshinextern int	agetflag __P((const char *));
4055505Sshinextern int	agetnum __P((const char *));
4155505Sshinextern char	*agetstr __P((const char *, char **));
4255505Sshin
4355505Sshin__END_DECLS
4455505Sshin
4555505Sshin#endif /* _ADVCAP_H_ */
46