summaryrefslogtreecommitdiffstats
path: root/include/c/str/cpy/stp/ustp/ustpcpy.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/c/str/cpy/stp/ustp/ustpcpy.h')
-rw-r--r--include/c/str/cpy/stp/ustp/ustpcpy.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/c/str/cpy/stp/ustp/ustpcpy.h b/include/c/str/cpy/stp/ustp/ustpcpy.h
new file mode 100644
index 0000000..610b36e
--- /dev/null
+++ b/include/c/str/cpy/stp/ustp/ustpcpy.h
@@ -0,0 +1,28 @@
+// Copyright 2022 Alejandro Colomar <alx@kernel.org>
+// SPDX-License-Identifier: LGPL-3.0-or-later WITH LGPL-3.0-linking-exception
+
+
+#ifndef INCLUDE_C_STR_CPY_STP_USTP_USTPCPY_H_
+#define INCLUDE_C_STR_CPY_STP_USTP_USTPCPY_H_
+
+
+#include <stddef.h>
+
+#include <c/mem/cpy/mempcpy.h>
+#include <c/str/cpy/stp/_compiler.h> // IWYU pragma: keep
+
+
+#pragma clang assume_nonnull begin
+inline char *c_ustpcpy(char *restrict dst, const char *restrict src,
+ size_t len);
+
+
+inline char *
+c_ustpcpy(char *restrict dst, const char *restrict src, size_t len)
+{
+ return c_mempcpy(dst, src, len);
+}
+#pragma clang assume_nonnull end
+
+
+#endif // Header guard