]>
Commit | Line | Data |
---|---|---|
7af5ce03 | 1 | /* $KAME: advcap.h,v 1.5 2003/06/09 05:40:54 t-momose Exp $ */ |
7ba0088d | 2 | |
b7080c8e | 3 | /* |
7ba0088d A |
4 | * Copyright (C) 1994,1995 by Andrey A. Chernov, Moscow, Russia. |
5 | * All rights reserved. | |
b7080c8e A |
6 | * |
7 | * Redistribution and use in source and binary forms, with or without | |
8 | * modification, are permitted provided that the following conditions | |
9 | * are met: | |
10 | * 1. Redistributions of source code must retain the above copyright | |
11 | * notice, this list of conditions and the following disclaimer. | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
b7080c8e | 15 | * |
7ba0088d | 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND |
b7080c8e A |
17 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
7ba0088d | 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE |
b7080c8e A |
20 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
21 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
22 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
23 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
24 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
25 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
26 | * SUCH DAMAGE. | |
b7080c8e A |
27 | */ |
28 | ||
7ba0088d A |
29 | /* Based on Id: termcap.h,v 1.8 1996/09/10 12:42:10 peter Exp */ |
30 | ||
31 | #ifndef _ADVCAP_H_ | |
32 | #define _ADVCAP_H_ | |
33 | ||
34 | #include <sys/cdefs.h> | |
35 | ||
36 | __BEGIN_DECLS | |
37 | ||
7af5ce03 A |
38 | extern int agetent(char *, const char *); |
39 | extern int agetflag(const char *); | |
40 | extern int64_t agetnum(const char *); | |
41 | extern char *agetstr(const char *, char **); | |
7ba0088d A |
42 | |
43 | __END_DECLS | |
b7080c8e | 44 | |
7ba0088d | 45 | #endif /* _ADVCAP_H_ */ |