]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/strxcpyx.h
in-addr-util: add new helper call in_addr_prefix_from_string_auto()
[thirdparty/systemd.git] / src / basic / strxcpyx.h
CommitLineData
d5a89d7d
KS
1#pragma once
2
3/***
4 This file is part of systemd.
5
6 Copyright 2013 Kay Sievers
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
d5a89d7d 22
11c3a366
TA
23#include <stddef.h>
24
44b601bc
LP
25#include "macro.h"
26
d5a89d7d 27size_t strpcpy(char **dest, size_t size, const char *src);
44b601bc
LP
28size_t strpcpyf(char **dest, size_t size, const char *src, ...) _printf_(3, 4);
29size_t strpcpyl(char **dest, size_t size, const char *src, ...) _sentinel_;
d5a89d7d 30size_t strscpy(char *dest, size_t size, const char *src);
44b601bc 31size_t strscpyl(char *dest, size_t size, const char *src, ...) _sentinel_;