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