14 lines
297 B
C
14 lines
297 B
C
// SPDX-FileCopyrightText: 2024, Alejandro Colomar <alx@kernel.org>
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "string/strtok/astrsep2ls.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
extern inline char **astrsep2ls(char *restrict s, const char *restrict delim,
|
|
size_t *restrict np);
|