X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Fctype.h;h=3ce837b61c338a722fb1980c6ecadfebd341180b;hp=f0accf042cb2c3eb6cb434ae0c6fd40f8fbf2cc6;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=e1c526e9bad3f6e69391e94059096145390508d3 diff --git a/includes/ctype.h b/includes/ctype.h index f0accf0..3ce837b 100644 --- a/includes/ctype.h +++ b/includes/ctype.h @@ -1,4 +1,4 @@ -/* 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. @@ -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