X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fctype.h;h=3ce837b61c338a722fb1980c6ecadfebd341180b;hb=be738e08ec9ba2498d81153bee1de9b8af7e764c;hp=638a87fcfaa2a66af9e7fc16caab71c72dc8dfa5;hpb=0e9b1a27ae0d06ede490aa0c96b8dc35624388d0;p=pdclib diff --git a/includes/ctype.h b/includes/ctype.h index 638a87f..3ce837b 100644 --- a/includes/ctype.h +++ b/includes/ctype.h @@ -1,6 +1,4 @@ -/* $Id$ */ - -/* 7.4 Character handling +/* Character handling This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -8,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 */ @@ -92,5 +93,8 @@ int tolower( int c ) _PDCLIB_nothrow; */ int toupper( int c ) _PDCLIB_nothrow; -_PDCLIB_END_EXTERN_C +#ifdef __cplusplus +} +#endif + #endif