chiark / gitweb /
convert to libudev and delete udev_utils_string.c
[elogind.git] / udev / udev_sysdeps.c
1 /*
2  * Copyright (C) 2005-2008 Kay Sievers <kay.sievers@vrfy.org>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program 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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <string.h>
21 #include <sys/types.h>
22
23 #include "udev_sysdeps.h"
24
25 #ifndef HAVE_STRLCPY
26 size_t strlcpy(char *dst, const char *src, size_t size)
27 {
28         size_t bytes = 0;
29         char *q = dst;
30         const char *p = src;
31         char ch;
32
33         while ((ch = *p++)) {
34                 if (bytes+1 < size)
35                         *q++ = ch;
36                 bytes++;
37         }
38
39         /* If size == 0 there is no space for a final null... */
40         if (size)
41                 *q = '\0';
42         return bytes;
43 }
44
45 size_t strlcat(char *dst, const char *src, size_t size)
46 {
47         size_t bytes = 0;
48         char *q = dst;
49         const char *p = src;
50         char ch;
51
52         while (bytes < size && *q) {
53                 q++;
54                 bytes++;
55         }
56         if (bytes == size)
57                 return (bytes + strlen(src));
58
59         while ((ch = *p++)) {
60                 if (bytes+1 < size)
61                 *q++ = ch;
62                 bytes++;
63         }
64
65         *q = '\0';
66         return bytes;
67 }
68 #endif /* HAVE_STRLCPY */