aboutsummaryrefslogtreecommitdiffstats
path: root/fm_strl.h
blob: fb7f9e234bb43865a09fcecbb0905012d63193c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef FM_STRL_H
#define FM_STRL_H

#include "config.h"

/* strlcpy/strlcat prototypes */
#ifndef HAVE_STRLCAT
size_t
strlcat(char *dst, const char *src, size_t siz);
#endif
#ifndef HAVE_STRLCPY
size_t
strlcpy(char *dst, const char *src, size_t siz);
#endif

#endif