summaryrefslogtreecommitdiffstats
path: root/include/c/stp/ustp/zustr2ustp.h
blob: e8428cf6baadef2d09d43ed915437ec936e3c055 (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
// Copyright 2022 Alejandro Colomar <alx@kernel.org>
// SPDX-License-Identifier:  LGPL-3.0-or-later WITH LGPL-3.0-linking-exception


#ifndef INCLUDE_C_STP_USTP_ZUSTR2USTP_H_
#define INCLUDE_C_STP_USTP_ZUSTR2USTP_H_


#include <stddef.h>
#include <string.h>

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


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


inline char *
c_zustr2ustp(char *restrict dst, const char *restrict src, size_t sz)
{
	return c_ustpcpy(dst, src, strnlen(src, sz));
}
#pragma clang assume_nonnull end


#endif  // Header guard