]> arthur.barton.de Git - netatalk.git/blob - libatalk/unicode/charsets/mac_turkish.c
Remove bdb env on exit
[netatalk.git] / libatalk / unicode / charsets / mac_turkish.c
1 /* 
2    Unix SMB/CIFS implementation.
3    minimal iconv implementation
4    Copyright (C) Andrew Tridgell 2001
5    Copyright (C) Jelmer Vernooij 2002,2003
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20    
21    From samba 3.0 beta and GNU libiconv-1.8
22    It's bad but most of the time we can't use libc iconv service:
23    - it doesn't round trip for most encoding
24    - it doesn't know about Apple extension
25 */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif /* HAVE_CONFIG_H */
30 #include <stdlib.h>
31 #include <netatalk/endian.h>
32 #include <atalk/unicode.h>
33
34 #include "mac_turkish.h"
35 #include "generic_mb.h"
36
37 static size_t   mac_turkish_pull(void *,char **, size_t *, char **, size_t *);
38 static size_t   mac_turkish_push(void *,char **, size_t *, char **, size_t *);
39
40 struct charset_functions charset_mac_turkish =
41 {
42         "MAC_TURKISH",
43         35,
44         mac_turkish_pull,
45         mac_turkish_push,
46         CHARSET_CLIENT | CHARSET_MULTIBYTE,
47         NULL,
48         NULL, NULL
49 };
50
51 static size_t mac_turkish_push( void *cd, char **inbuf, size_t *inbytesleft,
52                          char **outbuf, size_t *outbytesleft)
53 {
54         return (size_t) mb_generic_push( char_ucs2_to_mac_turkish, cd, inbuf, inbytesleft, outbuf, outbytesleft);
55 }
56
57 /* ------------------------ */
58
59 static size_t mac_turkish_pull ( void *cd, char **inbuf, size_t *inbytesleft,
60                          char **outbuf, size_t *outbytesleft)
61 {
62         return (size_t) mb_generic_pull( char_mac_turkish_to_ucs2, cd, inbuf, inbytesleft, outbuf, outbytesleft);
63
64 }