Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../usr/include/iso/wctype_c99.h
Real path: /usr/include/iso/wctype_c99.h
Zurück
/* * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved. */ /* * An application should not include this header directly. Instead it * should be included only through the inclusion of other Sun headers. * * The contents of this header is limited to identifiers specified in * the C99 standard and in conflict with the C++ implementation of the * standard header. The C++ standard may adopt the C99 standard at * which point it is expected that the symbols included here will * become part of the C++ std namespace. */ #ifndef _ISO_WCTYPE_C99_H #define _ISO_WCTYPE_C99_H #if __cplusplus >= 201103L namespace std { #endif #ifdef __cplusplus extern "C" { #endif /* * The following have been added as a result of the ISO/IEC 9899:1999 * standard. For a strictly conforming C application, visibility is * contingent on the value of __STDC_VERSION__ (see sys/feature_tests.h). * For non-strictly conforming C applications, there are no restrictions * on the C namespace. */ /* * Visibility of the iswblank() function is not allowed in the X/Open * or POSIX namespace prior to SUSv3. However, since SUSv3 aligns * with the C99 standard, visibility is controlled by the version of * the C standard as indicated by the value of __STDC_VERSION__ (see * sys/feature_tests.h and _STDC_C99) rather than if the X/Open or POSIX * feature test macros are used. Conforming SUSv3 applications are * required to use c99, therefore, iswblank() will be made visible by * default. */ #if (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \ defined(_STDC_C99) || defined(__EXTENSIONS__) extern int iswblank(wint_t); #endif #ifdef __cplusplus } #endif #if __cplusplus >= 201103L } #endif /* end of namespace std */ #endif /* _ISO_WCTYPE_C99_H */