File: fm_strl.h

package info (click to toggle)
fetchmail 6.5.6-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 7,596 kB
  • sloc: ansic: 19,190; sh: 7,108; python: 2,395; perl: 564; yacc: 447; lex: 286; makefile: 260; awk: 124; lisp: 84; exp: 43; sed: 17
file content (18 lines) | stat: -rw-r--r-- 307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef FM_STRL_H
#define FM_STRL_H

#include "config.h"

/* strlcpy/strlcat prototypes */
#ifndef HAVE_STRLCAT
#include <stddef.h>
size_t
strlcat(char *dst, const char *src, size_t siz);
#endif
#ifndef HAVE_STRLCPY
#include <stddef.h>
size_t
strlcpy(char *dst, const char *src, size_t siz);
#endif

#endif