]> pd.if.org Git - pdclib/blobdiff - includes/ctype.h
PDCLib includes with quotes, not <>.
[pdclib] / includes / ctype.h
index f0accf042cb2c3eb6cb434ae0c6fd40f8fbf2cc6..3ce837b61c338a722fb1980c6ecadfebd341180b 100644 (file)
@@ -1,4 +1,4 @@
-/* 7.4 Character handling <ctype.h>
+/* 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.
@@ -6,8 +6,11 @@
 
 #ifndef _PDCLIB_CTYPE_H
 #define _PDCLIB_CTYPE_H _PDCLIB_CTYPE_H
-#include <_PDCLIB_int.h>
-_PDCLIB_BEGIN_EXTERN_C
+#include "_PDCLIB_int.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /* Character classification functions */
 
@@ -90,5 +93,8 @@ int tolower( int c ) _PDCLIB_nothrow;
 */
 int toupper( int c ) _PDCLIB_nothrow;
 
-_PDCLIB_END_EXTERN_C
+#ifdef __cplusplus
+}
+#endif
+
 #endif