blob: dff79d7b12b56c4e2a277f49906f6447850d8894 (
plain)
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
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* strndup.c
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#include "config.h"
#include "compat.h"
#include <string.h>
#include <stdlib.h>
#ifndef HAVE_STRNDUP
char *strndup(const char *str, size_t max_len)
{
size_t len = 0;
char *out;
while (len < max_len && str[len] != '\0')
++len;
out = malloc(len + 1);
if (out != NULL) {
memcpy(out, str, len);
out[len] = '\0';
}
return out;
}
#endif
|