Fix issues in x86 memcpy-ssse3.S
[glibc.git] / string / strncpy.c
blob2274d7d31ea073ea0af227348a0129e14db5384a
1 /* Copyright (C) 1991, 1997, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
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.
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.
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. */
19 #include <string.h>
20 #include <memcopy.h>
22 #undef strncpy
24 #ifndef STRNCPY
25 #define STRNCPY strncpy
26 #endif
28 char *
29 STRNCPY (char *s1, const char *s2, size_t n)
31 reg_char c;
32 char *s = s1;
34 --s1;
36 if (n >= 4)
38 size_t n4 = n >> 2;
40 for (;;)
42 c = *s2++;
43 *++s1 = c;
44 if (c == '\0')
45 break;
46 c = *s2++;
47 *++s1 = c;
48 if (c == '\0')
49 break;
50 c = *s2++;
51 *++s1 = c;
52 if (c == '\0')
53 break;
54 c = *s2++;
55 *++s1 = c;
56 if (c == '\0')
57 break;
58 if (--n4 == 0)
59 goto last_chars;
61 n = n - (s1 - s) - 1;
62 if (n == 0)
63 return s;
64 goto zero_fill;
67 last_chars:
68 n &= 3;
69 if (n == 0)
70 return s;
74 c = *s2++;
75 *++s1 = c;
76 if (--n == 0)
77 return s;
79 while (c != '\0');
81 zero_fill:
83 *++s1 = '\0';
84 while (--n > 0);
86 return s;
88 libc_hidden_builtin_def (strncpy)