]> pd.if.org Git - pdclib/blobdiff - includes/ctype.h
Getting closer to scan().
[pdclib] / includes / ctype.h
diff --git a/includes/ctype.h b/includes/ctype.h
new file mode 100644 (file)
index 0000000..2c8071c
--- /dev/null
@@ -0,0 +1,23 @@
+/* $Id$ */
+
+/* 7.4 Character handling <ctype.h>
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#ifndef _PDCLIB_CTYPE_H
+#define _PDCLIB_CTYPE_H _PDCLIB_CTYPE_H
+
+/* ------------------------------------------------------------------------- */
+/*  THIS IS A STUB  -  THIS IS A STUB  -  THIS IS A STUB  -  THIS IS A STUB  */
+/* ------------------------------------------------------------------------- */
+/* This implements two functions that are required by <stdlib.h> / <stdio.h> */
+/* for the C locale only. Will be replaced in v0.6 by something compliant.   */
+/* ------------------------------------------------------------------------- */
+
+int tolower( int c );
+int isspace( int c );
+
+#endif
+