xref: /freebsd/libexec/getty/extern.h (revision 43581d7b6617959e4452094d9330ef020034a6c9)
18a16b7a1SPedro F. Giffuni /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
4712c581cSJoerg Wunsch  * Copyright (c) 1993
5712c581cSJoerg Wunsch  *	The Regents of the University of California.  All rights reserved.
6712c581cSJoerg Wunsch  *
7712c581cSJoerg Wunsch  * Redistribution and use in source and binary forms, with or without
8712c581cSJoerg Wunsch  * modification, are permitted provided that the following conditions
9712c581cSJoerg Wunsch  * are met:
10712c581cSJoerg Wunsch  * 1. Redistributions of source code must retain the above copyright
11712c581cSJoerg Wunsch  *    notice, this list of conditions and the following disclaimer.
12712c581cSJoerg Wunsch  * 2. Redistributions in binary form must reproduce the above copyright
13712c581cSJoerg Wunsch  *    notice, this list of conditions and the following disclaimer in the
14712c581cSJoerg Wunsch  *    documentation and/or other materials provided with the distribution.
155efaea4cSChristian Brueffer  * 3. Neither the name of the University nor the names of its contributors
16712c581cSJoerg Wunsch  *    may be used to endorse or promote products derived from this software
17712c581cSJoerg Wunsch  *    without specific prior written permission.
18712c581cSJoerg Wunsch  *
19712c581cSJoerg Wunsch  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20712c581cSJoerg Wunsch  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21712c581cSJoerg Wunsch  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22712c581cSJoerg Wunsch  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23712c581cSJoerg Wunsch  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24712c581cSJoerg Wunsch  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25712c581cSJoerg Wunsch  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26712c581cSJoerg Wunsch  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27712c581cSJoerg Wunsch  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28712c581cSJoerg Wunsch  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29712c581cSJoerg Wunsch  * SUCH DAMAGE.
30712c581cSJoerg Wunsch  */
31712c581cSJoerg Wunsch 
32712c581cSJoerg Wunsch struct delayval;
33cae66988SJoerg Wunsch struct termios;
34cae66988SJoerg Wunsch 
359c33cc93SEdward Tomasz Napierala extern	char **environ;
369c33cc93SEdward Tomasz Napierala extern	char editedhost[];
37cae66988SJoerg Wunsch extern	char hostname[];
38cae66988SJoerg Wunsch extern	struct termios tmode, omode;
39cae66988SJoerg Wunsch extern	struct gettyflags gettyflags[];
40cae66988SJoerg Wunsch extern	struct gettynums gettynums[];
41cae66988SJoerg Wunsch extern	struct gettystrs gettystrs[];
42712c581cSJoerg Wunsch 
4395289b27SWarner Losh int	 adelay(int, struct delayval *);
4495289b27SWarner Losh const char *autobaud(void);
4595289b27SWarner Losh int	 delaybits(void);
4695289b27SWarner Losh void	 edithost(const char *);
4795289b27SWarner Losh void	 gendefaults(void);
48*8ad7a14aSDag-Erling Smørgrav void	 gettable(const char *);
4995289b27SWarner Losh void	 makeenv(char *[]);
5095289b27SWarner Losh const char *portselector(void);
5195289b27SWarner Losh void	 set_ttydefaults(int);
5295289b27SWarner Losh void	 setchars(void);
5395289b27SWarner Losh void	 setdefaults(void);
5495289b27SWarner Losh void	 set_flags(int);
5595289b27SWarner Losh int	 speed(int);
5695289b27SWarner Losh int	 getty_chat(char *, int, int);
57