summaryrefslogtreecommitdiffstats
path: root/include/c/str/cpy/stp/ustp/ustpcpy.h
blob: 610b36e6593cdcc3d6314befaa44561fcdd0f0eb (plain) (blame)
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
// 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