summaryrefslogtreecommitdiffstats
path: root/include/c/str/cpy/stp/stp/ustr2stp.h
blob: 9c8b21fdd73fe81a767a0101c9a496e70657678c (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
29
30
31
32
33
// 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_STP_USTR2STP_H_
#define INCLUDE_C_STR_CPY_STP_STP_USTR2STP_H_


#include <stddef.h>

#include <c/str/cpy/stp/_compiler.h>  // IWYU pragma: keep
#include <c/str/cpy/stp/ustp/ustpcpy.h>


#pragma clang assume_nonnull begin
inline char *c_ustr2stp(char *restrict dst, const char *restrict src,
    size_t len);


inline char *
c_ustr2stp(char *restrict dst, const char *restrict src, size_t len)
{
	char  *p;

	p = c_ustpcpy(dst, src, len);
	*p = '\0';

	return p;
}
#pragma clang assume_nonnull end


#endif  // Header guard