+#include <ctype.h>
+
+/* common */
+#include "inline.h"
+
+
/* This module contains replacements for functions in ctype.h besides other
* functions. There is a problem with using ctype.h directly:
* The parameter must have a value of "unsigned char" or EOF.
int IsBlank (char C);
/* Check for a space or tab */
+#if defined(HAVE_INLINE)
+INLINE int IsControl (char C)
+/* Check for control chars */
+{
+ return iscntrl ((unsigned char) C);
+}
+#else
+# define IsControl(C) iscntrl (C)
+#endif
+
int IsSpace (char C);
/* Check for any white space characters */