blob: fbf8f2bd52e2eb3ea11193bbf1e58862ce9fd0c0 (
plain)
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
|
#ifndef RCS_LIB_H
#define RCS_LIB_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
/* strlcpy and strlcat */
#ifndef HAVE_STRLCPY
size_t strlcpy(char *, const char *, size_t);
#endif
#ifndef HAVE_STRLCPY
size_t strlcat(char *, const char *, size_t);
#endif
#ifndef HAVE_STRTONUM
long long strtonum(const char *, long long, long long, const char **);
#endif
#ifndef HAVE_FGETLN
char *fgetln(FILE *, size_t *);
#endif
#endif /* RCS_LIB_H */
|