~ubuntu-branches/ubuntu/natty/opendkim/natty

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
/*
**  Copyright (c) 2009, The OpenDKIM Project.  All rights reserved.
*/

#ifndef _DKIM_STRL_H_
#define _DKIM_STRL_H_

#ifndef lint
static char dkim_strl_h_id[] = "@(#)$Id: dkim-strl.h,v 1.3 2009/11/06 22:30:13 cm-msk Exp $";
#endif /* !lint */

/* system includes */
#include <sys/types.h>

/* OpenDKIM includes */
#include "build-config.h"

/* mappings */
#if HAVE_STRLCAT == 0
# define strlcat(x,y,z)	dkim_strlcat((x), (y), (z))
#endif /* HAVE_STRLCAT == 0 */

#if HAVE_STRLCPY == 0
# define strlcpy(x,y,z)	dkim_strlcpy((x), (y), (z))
#endif /* HAVE_STRLCPY == 0 */

#endif /* _DKIM_STRL_H_ */