1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/* Public domain. */
#ifndef _LINUX_STRING_H
#define _LINUX_STRING_H
#include <sys/types.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/stdint.h>
#include <sys/errno.h>
void *memchr_inv(const void *, int, size_t);
static inline void *
memset32(uint32_t *b, uint32_t c, size_t len)
{
uint32_t *dst = b;
while (len--)
*dst++ = c;
return b;
}
static inline void *
memset64(uint64_t *b, uint64_t c, size_t len)
{
uint64_t *dst = b;
while (len--)
*dst++ = c;
return b;
}
static inline void *
memset_p(void **p, void *v, size_t n)
{
#ifdef __LP64__
return memset64((uint64_t *)p, (uintptr_t)v, n);
#else
return memset32((uint32_t *)p, (uintptr_t)v, n);
#endif
}
static inline void *
kmemdup(const void *src, size_t len, int flags)
{
void *p = malloc(len, M_DRM, flags);
if (p)
memcpy(p, src, len);
return (p);
}
static inline void *
kstrdup(const char *str, int flags)
{
size_t len;
char *p;
len = strlen(str) + 1;
p = malloc(len, M_DRM, flags);
if (p)
memcpy(p, str, len);
return (p);
}
static inline int
match_string(const char * const *array, size_t n, const char *str)
{
int i;
for (i = 0; i < n; i++) {
if (array[i] == NULL)
break;
if (!strcmp(array[i], str))
return i;
}
return -EINVAL;
}
#endif
|