dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / libsmbfs / smb / charsets.h
blob4c917c99d2b769b0a469e6a7d47371a6ece3fecb
1 /*
2 * Copyright (c) 2001 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * "Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.0 (the 'License'). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License."
22 * @APPLE_LICENSE_HEADER_END@
25 * @(#)charsets.h
26 * (c) 2004 Apple Computer, Inc. All Rights Reserved
29 * charsets.h -- Routines converting between UTF-8, 16-bit
30 * little-endian Unicode, 16-bit host-byte-order
31 * Unicode, and various Windows code pages.
33 * MODIFICATION HISTORY:
34 * 28-Nov-2004 Guy Harris New today
37 #ifndef __CHARSETS_H__
38 #define __CHARSETS_H__
40 extern char *convert_wincs_to_utf8(const char *windows_string);
41 extern char *convert_utf8_to_wincs(const char *utf8_string);
42 extern char *convert_leunicode_to_utf8(unsigned short *windows_string);
43 extern char *convert_unicode_to_utf8(unsigned short *windows_string);
44 extern unsigned short *convert_utf8_to_leunicode(const char *utf8_string);
45 extern size_t unicode_strlen(const uint16_t *unicode_string);
46 extern char *utf8_str_tolower(const char *s);
47 extern char *utf8_str_toupper(const char *s);
49 extern char *unpercent(char *component);
51 #endif /* __CHARSETS_H__ */