Remove unused directories and files in video_in_hal
[staging/basesystem.git] / nsframework / framework_unified / client / NS_MessageQueue / src / ns_mq_string.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 <string.h>
18 #include <native_service/ns_logger_if.h>
19
20 size_t strlcpy(char *dst, const char *src, size_t siz) {
21   if (dst == NULL) {
22     FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __func__, "dst is NULL");
23     return 0;
24   }
25   if (src == NULL) {
26     FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __func__, "src is NULL");
27     return 0;
28   }
29   size_t ret = strlen(src);
30
31   if (siz) {
32     size_t len = (ret >= siz) ? siz - 1 : ret;
33     memcpy(dst, src, len);
34     dst[len] = '\0';
35   }
36   return ret;
37 }
38
39 size_t strlcat(char *dst, const char *src, size_t siz) {
40   if (dst == NULL) {
41     FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __func__, "dst is NULL");
42     return 0;
43   }
44   if (src == NULL) {
45     FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __func__, "src is NULL");
46     return 0;
47   }
48   size_t dsiz = strlen(dst);
49   size_t len = strlen(src);
50   size_t res = dsiz + len;
51
52   dst += dsiz;
53   siz -= dsiz;
54   if (len >= siz) {
55     len = siz - 1;
56   }
57   memcpy(dst, src, len);
58   dst[len] = '\0';
59   return res;
60 }