|
@@ -16,6 +16,7 @@
|
|
#include <string.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <errno.h>
|
|
#include <linux/string.h>
|
|
#include <linux/string.h>
|
|
|
|
+#include <linux/compiler.h>
|
|
|
|
|
|
/**
|
|
/**
|
|
* memdup - duplicate region of memory
|
|
* memdup - duplicate region of memory
|
|
@@ -60,3 +61,29 @@ int strtobool(const char *s, bool *res)
|
|
}
|
|
}
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * strlcpy - Copy a C-string into a sized buffer
|
|
|
|
+ * @dest: Where to copy the string to
|
|
|
|
+ * @src: Where to copy the string from
|
|
|
|
+ * @size: size of destination buffer
|
|
|
|
+ *
|
|
|
|
+ * Compatible with *BSD: the result is always a valid
|
|
|
|
+ * NUL-terminated string that fits in the buffer (unless,
|
|
|
|
+ * of course, the buffer size is zero). It does not pad
|
|
|
|
+ * out the result like strncpy() does.
|
|
|
|
+ *
|
|
|
|
+ * If libc has strlcpy() then that version will override this
|
|
|
|
+ * implementation:
|
|
|
|
+ */
|
|
|
|
+size_t __weak strlcpy(char *dest, const char *src, size_t size)
|
|
|
|
+{
|
|
|
|
+ size_t ret = strlen(src);
|
|
|
|
+
|
|
|
|
+ if (size) {
|
|
|
|
+ size_t len = (ret >= size) ? size - 1 : ret;
|
|
|
|
+ memcpy(dest, src, len);
|
|
|
|
+ dest[len] = '\0';
|
|
|
|
+ }
|
|
|
|
+ return ret;
|
|
|
|
+}
|