/*
 * SPDX-FileCopyrightText: 2015 Todd C. Miller <Todd.Miller@courtesan.com>
 *
 * SPDX-License-Identifier: 0BSD
 */
#ifndef STRLCPY_H
#define STRLCPY_H
size_t strLcpy(char *dst, const char *src, size_t dsize);
#endif
