Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/libexslt/../ctype.h
Real path: /usr/include/ctype.h
Zurück
/* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 1988, 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _CTYPE_H #define _CTYPE_H #include <iso/ctype_iso.h> #include <iso/ctype_c99.h> /* * Allow global visibility for symbols defined in * C++ "std" namespace in <iso/ctype_iso.h>. */ #if __cplusplus >= 199711L using std::isalnum; using std::isalpha; using std::iscntrl; using std::isdigit; using std::isgraph; using std::islower; using std::isprint; using std::ispunct; using std::isspace; using std::isupper; using std::isxdigit; using std::tolower; using std::toupper; #endif #ifdef __cplusplus extern "C" { #endif #if (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \ defined(_XPG7) || defined(__EXTENSIONS__) #ifndef _LOCALE_T #define _LOCALE_T typedef struct _LC_locale_t **locale_t; #endif /* !_LOCALE_T */ #endif /* (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) .. */ #if defined(__EXTENSIONS__) || \ ((!defined(_STRICT_STDC) && !defined(_POSIX_C_SOURCE)) || \ defined(_XOPEN_SOURCE)) extern int isascii(int); extern int toascii(int); extern int _tolower(int); extern int _toupper(int); #endif /* defined(__EXTENSIONS__) || ((!defined(_STRICT_STDC) ... */ #if (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \ defined(_XPG7) || defined(__EXTENSIONS__) extern int isalnum_l(int, locale_t); extern int isalpha_l(int, locale_t); extern int isblank_l(int, locale_t); extern int iscntrl_l(int, locale_t); extern int isdigit_l(int, locale_t); extern int isgraph_l(int, locale_t); extern int islower_l(int, locale_t); extern int isprint_l(int, locale_t); extern int ispunct_l(int, locale_t); extern int isspace_l(int, locale_t); extern int isupper_l(int, locale_t); extern int isxdigit_l(int, locale_t); extern int tolower_l(int, locale_t); extern int toupper_l(int, locale_t); #endif /* (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX))... */ #if !defined(__lint) #if defined(__EXTENSIONS__) || \ ((!defined(_STRICT_STDC) && !defined(_POSIX_C_SOURCE)) || \ defined(_XOPEN_SOURCE)) || defined(__XPG4_CHAR_CLASS__) #define isascii(c) (!(((int)(c)) & ~0177)) #define toascii(c) (((int)(c)) & 0177) #if defined(__XPG4_CHAR_CLASS__) || defined(_XPG4) #define _toupper(c) (__trans_upper[(int)(c)]) #define _tolower(c) (__trans_lower[(int)(c)]) #else #define _toupper(c) ((__ctype + 258)[(int)(c)]) #define _tolower(c) ((__ctype + 258)[(int)(c)]) #endif /* defined(__XPG4_CHAR_CLASS__) || defined(_XPG4) */ #endif /* defined(__EXTENSIONS__) || ((!defined(_STRICT_STDC) ... */ #endif /* !defined(__lint) */ #ifdef __cplusplus } #endif #endif /* _CTYPE_H */