blob: 8282ad9e6de5e722dbaa2539f10b945c31737a62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _CONFIG_H
#define _CONFIG_H
#define PACKAGE "Libidn"
#define PACKAGE_VERSION "1.9"
#define strcasecmp stricmp
#define strncasecmp strnicmp
#define LOCALEDIR "."
#if _MSC_VER && !__cplusplus
# define inline __inline
#endif
#endif /* _CONFIG_H */
|