config.h 258 B

12345678910111213141516
  1. #ifndef _CONFIG_H
  2. #define _CONFIG_H
  3. #define PACKAGE "Libidn"
  4. #define PACKAGE_VERSION "1.9"
  5. #define strcasecmp stricmp
  6. #define strncasecmp strnicmp
  7. #define LOCALEDIR "."
  8. #if _MSC_VER && !__cplusplus
  9. # define inline __inline
  10. #endif
  11. #endif /* _CONFIG_H */