1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright (c) 1990, 2010, Oracle and/or its affiliates. All rights reserved. 24 * Copyright 2017 Nexenta Systems, Inc. All rights reserved. 25 */ 26 27 #ifndef _SYS_SUNDDI_H 28 #define _SYS_SUNDDI_H 29 30 /* 31 * Sun Specific DDI definitions (fakekernel version) 32 * The real sunddi.h has become a "kitchen sink" full of 33 * includes we don't want, and lots of places include it. 34 * Rather than fight that battle now, provide this one 35 * with just the str*, mem*, and kiconv* functions. 36 * Some day, re-factor: sunddi.h, systm.h 37 */ 38 39 #include <sys/isa_defs.h> 40 #include <sys/dditypes.h> 41 #include <sys/time.h> 42 #include <sys/cmn_err.h> 43 44 #include <sys/kmem.h> 45 #include <sys/nvpair.h> 46 #include <sys/thread.h> 47 #include <sys/stream.h> 48 49 #include <sys/u8_textprep.h> 50 #include <sys/kiconv.h> 51 52 #ifdef __cplusplus 53 extern "C" { 54 #endif 55 56 #if defined(_KERNEL) || defined(_FAKE_KERNEL) 57 58 extern char *ddi_strdup(const char *str, int flag); 59 extern char *strdup(const char *str); 60 extern void strfree(char *str); 61 62 extern size_t strlen(const char *) __PURE; 63 extern size_t strnlen(const char *, size_t) __PURE; 64 extern char *strcpy(char *, const char *); 65 extern char *strncpy(char *, const char *, size_t); 66 67 /* Need to be consistent with <string.h> C++ definition for strchr() */ 68 #if __cplusplus >= 199711L 69 extern const char *strchr(const char *, int); 70 #else 71 extern char *strchr(const char *, int); 72 #endif /* __cplusplus >= 199711L */ 73 74 #define DDI_STRSAME(s1, s2) ((*(s1) == *(s2)) && (strcmp((s1), (s2)) == 0)) 75 extern int strcmp(const char *, const char *) __PURE; 76 extern int strncmp(const char *, const char *, size_t) __PURE; 77 extern char *strncat(char *, const char *, size_t); 78 extern size_t strlcat(char *, const char *, size_t); 79 extern size_t strlcpy(char *, const char *, size_t); 80 extern size_t strspn(const char *, const char *); 81 extern size_t strcspn(const char *, const char *); 82 extern int bcmp(const void *, const void *, size_t) __PURE; 83 extern int stoi(char **); 84 extern void numtos(ulong_t, char *); 85 extern void bcopy(const void *, void *, size_t); 86 extern void bzero(void *, size_t); 87 88 extern void *memcpy(void *, const void *, size_t); 89 extern void *memset(void *, int, size_t); 90 extern void *memmove(void *, const void *, size_t); 91 extern int memcmp(const void *, const void *, size_t) __PURE; 92 93 /* Need to be consistent with <string.h> C++ definition for memchr() */ 94 #if __cplusplus >= 199711L 95 extern const void *memchr(const void *, int, size_t); 96 #else 97 extern void *memchr(const void *, int, size_t); 98 #endif /* __cplusplus >= 199711L */ 99 100 extern int ddi_strtol(const char *, char **, int, long *); 101 extern int ddi_strtoul(const char *, char **, int, unsigned long *); 102 extern int ddi_strtoll(const char *, char **, int, longlong_t *); 103 extern int ddi_strtoull(const char *, char **, int, u_longlong_t *); 104 105 #endif /* _KERNEL || _FAKE_KERNEL */ 106 107 #ifdef __cplusplus 108 } 109 #endif 110 111 #endif /* _SYS_SUNDDI_H */ 112