Change copyright notice from LGPL to GPL.
[gnulib.git] / lib / unistr / u8-uctomb-aux.c
1 /* Conversion UCS-4 to UTF-8.
2    Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2002.
4
5    This program is free software; you can redistribute it and/or modify it
6    under the terms of the GNU Library General Public License as published
7    by the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
18    USA.  */
19
20 #include <config.h>
21
22 /* Specification.  */
23 #include "unistr.h"
24
25 #if HAVE_INLINE
26
27 int
28 u8_uctomb_aux (uint8_t *s, ucs4_t uc, int n)
29 {
30   int count;
31
32   if (uc < 0x80)
33     /* The case n >= 1 is already handled by the caller.  */
34     return -2;
35   else if (uc < 0x800)
36     count = 2;
37   else if (uc < 0x10000)
38     {
39       if (uc < 0xd800 || uc >= 0xe000)
40         count = 3;
41       else
42         return -1;
43     }
44 #if 0
45   else if (uc < 0x200000)
46     count = 4;
47   else if (uc < 0x4000000)
48     count = 5;
49   else if (uc <= 0x7fffffff)
50     count = 6;
51 #else
52   else if (uc < 0x110000)
53     count = 4;
54 #endif
55   else
56     return -1;
57
58   if (n < count)
59     return -2;
60
61   switch (count) /* note: code falls through cases! */
62     {
63 #if 0
64     case 6: s[5] = 0x80 | (uc & 0x3f); uc = uc >> 6; uc |= 0x4000000;
65     case 5: s[4] = 0x80 | (uc & 0x3f); uc = uc >> 6; uc |= 0x200000;
66 #endif
67     case 4: s[3] = 0x80 | (uc & 0x3f); uc = uc >> 6; uc |= 0x10000;
68     case 3: s[2] = 0x80 | (uc & 0x3f); uc = uc >> 6; uc |= 0x800;
69     case 2: s[1] = 0x80 | (uc & 0x3f); uc = uc >> 6; uc |= 0xc0;
70   /*case 1:*/ s[0] = uc;
71     }
72   return count;
73 }
74
75 #endif