OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / string / generic / strncat.c
1 /* Copyright (C) 1991, 1997 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #include <string.h>
20
21 #include "memcopy.h"
22
23 char *strncat (char *s1, const char *s2, size_t n)
24 {
25   reg_char c;
26   char *s = s1;
27
28   /* Find the end of S1.  */
29   do
30     c = *s1++;
31   while (c != '\0');
32
33   /* Make S1 point before next character, so we can increment
34      it while memory is read (wins on pipelined cpus).  */
35   s1 -= 2;
36
37   if (n >= 4)
38     {
39       size_t n4 = n >> 2;
40       do
41         {
42           c = *s2++;
43           *++s1 = c;
44           if (c == '\0')
45             return s;
46           c = *s2++;
47           *++s1 = c;
48           if (c == '\0')
49             return s;
50           c = *s2++;
51           *++s1 = c;
52           if (c == '\0')
53             return s;
54           c = *s2++;
55           *++s1 = c;
56           if (c == '\0')
57             return s;
58         } while (--n4 > 0);
59       n &= 3;
60     }
61
62   while (n > 0)
63     {
64       c = *s2++;
65       *++s1 = c;
66       if (c == '\0')
67         return s;
68       n--;
69     }
70
71   if (c != '\0')
72     *++s1 = '\0';
73
74   return s;
75 }
76 libc_hidden_proto(strncat)
77 libc_hidden_def(strncat)