repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
external
/
bsd
/
libevent
/
dist
/
strlcpy-internal.h
blob
684573b7756a85dbeae3d1d49f78762201bad56f
1
/* $NetBSD$ */
2
#ifndef _STRLCPY_INTERNAL_H_
3
#define _STRLCPY_INTERNAL_H_
4
5
#ifdef __cplusplus
6
extern
"C"
{
7
#endif
8
9
#ifdef HAVE_CONFIG_H
10
#include
"config.h"
11
#endif
/* HAVE_CONFIG_H */
12
13
#ifndef HAVE_STRLCPY
14
#include <string.h>
15
size_t
_event_strlcpy
(
char
*
dst
,
const char
*
src
,
size_t
siz
);
16
#define strlcpy _event_strlcpy
17
#endif
18
19
#ifdef __cplusplus
20
}
21
#endif
22
23
#endif
24