xref: /titanic_51/usr/src/cmd/make/include/mksh/misc.h (revision 10d63b7db37a83b39c7f511cf9426c9d03ea0760)
1*10d63b7dSRichard Lowe #ifndef _MKSH_MISC_H
2*10d63b7dSRichard Lowe #define _MKSH_MISC_H
3*10d63b7dSRichard Lowe /*
4*10d63b7dSRichard Lowe  * CDDL HEADER START
5*10d63b7dSRichard Lowe  *
6*10d63b7dSRichard Lowe  * The contents of this file are subject to the terms of the
7*10d63b7dSRichard Lowe  * Common Development and Distribution License (the "License").
8*10d63b7dSRichard Lowe  * You may not use this file except in compliance with the License.
9*10d63b7dSRichard Lowe  *
10*10d63b7dSRichard Lowe  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11*10d63b7dSRichard Lowe  * or http://www.opensolaris.org/os/licensing.
12*10d63b7dSRichard Lowe  * See the License for the specific language governing permissions
13*10d63b7dSRichard Lowe  * and limitations under the License.
14*10d63b7dSRichard Lowe  *
15*10d63b7dSRichard Lowe  * When distributing Covered Code, include this CDDL HEADER in each
16*10d63b7dSRichard Lowe  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17*10d63b7dSRichard Lowe  * If applicable, add the following below this CDDL HEADER, with the
18*10d63b7dSRichard Lowe  * fields enclosed by brackets "[]" replaced with your own identifying
19*10d63b7dSRichard Lowe  * information: Portions Copyright [yyyy] [name of copyright owner]
20*10d63b7dSRichard Lowe  *
21*10d63b7dSRichard Lowe  * CDDL HEADER END
22*10d63b7dSRichard Lowe  */
23*10d63b7dSRichard Lowe /*
24*10d63b7dSRichard Lowe  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
25*10d63b7dSRichard Lowe  * Use is subject to license terms.
26*10d63b7dSRichard Lowe  */
27*10d63b7dSRichard Lowe 
28*10d63b7dSRichard Lowe #include <mksh/defs.h>
29*10d63b7dSRichard Lowe 
30*10d63b7dSRichard Lowe extern void	append_char(wchar_t from, register String to);
31*10d63b7dSRichard Lowe extern Property	append_prop(register Name target, register Property_id type);
32*10d63b7dSRichard Lowe extern void	append_string(register wchar_t *from, register String to, register int length);
33*10d63b7dSRichard Lowe extern void	enable_interrupt(register void (*handler) (int));
34*10d63b7dSRichard Lowe extern char	*errmsg(int errnum);
35*10d63b7dSRichard Lowe extern void	fatal_mksh(const char *message, ...);
36*10d63b7dSRichard Lowe extern void	fatal_reader_mksh(const char *pattern, ...);
37*10d63b7dSRichard Lowe extern char	*get_current_path_mksh(void);
38*10d63b7dSRichard Lowe extern Property	get_prop(register Property start, register Property_id type);
39*10d63b7dSRichard Lowe extern char	*getmem(register int size);
40*10d63b7dSRichard Lowe extern Name	getname_fn(wchar_t *name, register int len, register Boolean dont_enter, register Boolean * foundp = NULL);
41*10d63b7dSRichard Lowe extern void	store_name(Name name);
42*10d63b7dSRichard Lowe extern void	free_name(Name name);
43*10d63b7dSRichard Lowe extern void	handle_interrupt_mksh(int);
44*10d63b7dSRichard Lowe extern Property	maybe_append_prop(register Name target, register Property_id type);
45*10d63b7dSRichard Lowe extern void	retmem(wchar_t *p);
46*10d63b7dSRichard Lowe extern void	retmem_mb(caddr_t p);
47*10d63b7dSRichard Lowe extern void	setup_char_semantics(void);
48*10d63b7dSRichard Lowe extern void	setup_interrupt(register void (*handler) (int));
49*10d63b7dSRichard Lowe extern void	warning_mksh(char * message, ...);
50*10d63b7dSRichard Lowe 
51*10d63b7dSRichard Lowe extern void	append_string(register char *from, register String to, register int length);
52*10d63b7dSRichard Lowe extern wchar_t	*get_wstring(char * from);
53*10d63b7dSRichard Lowe 
54*10d63b7dSRichard Lowe 
55*10d63b7dSRichard Lowe #endif
56