/usr/share/sendmail/examples/milter/strl.h is in sendmail-base 8.14.4-4.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /*-------------------------------------------------------------------*/
/* strl.h: include file for functions in strl.c */
/* buried in the bottom of include/sendmail/sendmail.h */
/* extracted and placed herein. */
/* */
/* referenced by: ./sample.c */
/* defined by: /usr/lib/libmilter/libsm.a */
/* */
/* Richard Nelson <cowboy@debian.org> */
/*-------------------------------------------------------------------*/
#define strlcpy sm_strlcpy
#define strlcat sm_strlcat
extern size_t sm_strlcpy __P((char *, const char *, size_t));
extern size_t sm_strlcat __P((char *, const char *, size_t));
|