Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../usr/include/iso/ctype_c99.h
Real path: /usr/include/iso/ctype_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 <ctype.h>. * * 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_CTYPE_C99_H #define _ISO_CTYPE_C99_H #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. */ #if (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \ defined(_XPG6) || defined(_STDC_C99) || defined(__EXTENSIONS__) || \ defined(_XPG7) || defined(_STDC_C11) || defined(__XPG7_THREAD_MODEL__) extern int isblank(int); #endif #if !defined(__lint) #if !defined(__XPG7_THREAD_MODEL__) && \ ((!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \ defined(_XPG6) || defined(_STDC_C99) || \ defined(__XPG4_CHAR_CLASS__) || defined(__EXTENSIONS__)) #define isblank(c) (__ctype_mask[(int)(c)] & _ISBLANK) #endif #endif /* !defined(__lint) */ #ifdef __cplusplus } #endif #endif /* _ISO_CTYPE_C99_H */