45#ifndef COMPILE_ALL_CPP
53#if ( defined(__GNUC__) && defined(__MINGW32__) && __GNUC__ == 3 && __GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ == 0 && defined(_WIN32) )
55#define my_va_start(A,B) ((A)=(va_list)__builtin_next_arg(lpszFormat))
57#define my_va_start va_start
63#ifdef COMPILE_ANSI_ONLY
65#define __isascii(val) ((unsigned)(val) <= 0x7F)
75#if ( defined(COMPILE_ADD_NON_ANSI_FUNCTIONS) || defined(__STDC__) && __STDC__ == 1 )
88#ifndef COMPILE_ALL_CPP
char * inchi__strnset(char *s, int val, size_t length)
Definition util.c:1973
int inchi_stricmp(const char *s1, const char *s2)
Definition util.c:1947
char * inchi__strdup(const char *string)
Definition util.c:1985
int inchi_memicmp(const void *p1, const void *p2, size_t length)
Compare two memory blocks in a case-insensitive manner.
Definition util.c:1924