common_library: gettid is multiple declaration in cl_error
[staging/basesystem.git] / video_in_hal / otherservice / posix_based_os001_legacy_library / library / src / strlcpy.c
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <sys/types.h>
18 #include <string.h>
19
20 /*
21  * Copy src to string dst of size siz.  At most siz-1 characters
22  * will be copied.  Always NUL terminates (unless siz == 0).
23  * Returns strlen(src); if retval >= siz, truncation occurred.
24  */
25 size_t
26 strlcpy(char *dst, const char *src, size_t siz)
27 {
28         char *d = dst;
29         const char *s = src;
30         size_t n = siz;
31
32         /* Copy as many bytes as will fit */
33         if (n != 0) {
34                 while (--n != 0) {
35                         if ((*d++ = *s++) == '\0')
36                                 break;
37                 }
38         }
39
40         /* Not enough room in dst, add NUL and traverse rest of src */
41         if (n == 0) {
42                 if (siz != 0)
43                         *d = '\0';              /* NUL-terminate dst */
44                 while (*s++)
45                         ;
46         }
47
48         return (size_t)(s - src - 1);   /* count does not include NUL */
49 }