File: replace.h

package info (click to toggle)
trueprint 5.4-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,384 kB
  • sloc: sh: 12,296; ansic: 8,482; makefile: 115
file content (18 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifdef HAVE_LIBINTL_H
#include <libintl.h>
#else
char *gettext(const char *);
#endif

#ifndef HAVE_STRDUP
extern char *strdup(const char *);
#endif

#ifndef HAVE_STRERROR
extern char *strerror(int errnum);
#endif

#ifndef HAVE_STRTOL
extern long int strtol(const char *nptr, char **endptr, int base);
#endif