File: string_ext.h

package info (click to toggle)
ssmtp 2.33-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 220 kB
  • ctags: 102
  • sloc: ansic: 1,249; makefile: 86; sh: 74
file content (25 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (3)
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
/*
** strings.h -- Local strings routines.
*/
#ifdef NOSTRINGS
#define NOSTRDUP
#define NOSTRNCASECMP
#define NOSTRDUP
#define NOSTRSTR
#endif

#ifdef NOSTRDUP
char *strdup(/* char *p */);
#endif

#ifdef NOSTRNCASECMP
int strncasecmp(/* char *p, *q; int n */);
#endif

#ifdef NOSTRTOK
char *strtok(/* char *input, *separators */);
#endif

#ifdef NOSTRSTR
char *strstr(/* char *string, *substr */);
#endif