summaryrefslogtreecommitdiffstats
path: root/src/H5private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5private.h')
-rw-r--r--src/H5private.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/H5private.h b/src/H5private.h
index 3ba6efd..1b595b4 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -1551,34 +1551,7 @@ H5_DLL double H5_trace(const double *calltime, const char *func, const char *typ
/* `S' is the name of a function which is being tested to check if its */
/* an API function */
-#if 0
#define H5_IS_API(S) ('_'!=S[2] && '_'!=S[3] && (!S[4] || '_'!=S[4]))
-#else
-/*
-#define H5_IS_API(S) ('_'!=S[2] && '_'!=S[3] && (!S[4] || '_'!=S[4]) && \
- (!S[5] || ('_'!=S[5] && (S[4]>='a' && S[4]<='z'))))
-*/
-#define H5_IS_API(S) ( ( 'H' == S[0] ) \
- && \
- ( '5' == S[1] ) \
- && \
- ( ( islower(S[2]) ) \
- || \
- ( ( ( isupper(S[2]) ) || ( isdigit(S[2]) ) ) \
- && \
- ( islower(S[3]) ) \
- ) \
- || \
- ( ( ( isupper(S[2]) ) || ( isdigit(S[2]) ) ) \
- && \
- ( ( isupper(S[3]) ) || ( isdigit(S[3]) ) ) \
- && \
- ( islower(S[4]) ) \
- ) \
- ) \
- )
-
-#endif
/* global library version information string */
extern char H5_lib_vers_info_g[];