Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
clang /
20 /
include /
llvm_libc_wrappers /
Delete
Unzip
Name
Size
Permission
Date
Action
assert.h
942
B
-rw-r--r--
2025-07-08 23:06
ctype.h
3.75
KB
-rw-r--r--
2025-07-08 23:06
inttypes.h
954
B
-rw-r--r--
2025-07-08 23:06
stdio.h
2.86
KB
-rw-r--r--
2025-07-08 23:06
stdlib.h
1.67
KB
-rw-r--r--
2025-07-08 23:06
string.h
3.93
KB
-rw-r--r--
2025-07-08 23:06
time.h
976
B
-rw-r--r--
2025-07-08 23:06
Save
Rename
//===-- Wrapper for C standard ctype.h declarations on the GPU ------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef __CLANG_LLVM_LIBC_WRAPPERS_CTYPE_H__ #define __CLANG_LLVM_LIBC_WRAPPERS_CTYPE_H__ #if !defined(_OPENMP) && !defined(__HIP__) && !defined(__CUDA__) #error "This file is for GPU offloading compilation only" #endif // The GNU headers like to define 'toupper' and 'tolower' redundantly. This is // necessary to prevent it from doing that and remapping our implementation. #if (defined(__NVPTX__) || defined(__AMDGPU__)) && defined(__GLIBC__) #pragma push_macro("__USE_EXTERN_INLINES") #undef __USE_EXTERN_INLINES #endif #include_next <ctype.h> #if (defined(__NVPTX__) || defined(__AMDGPU__)) && defined(__GLIBC__) #pragma pop_macro("__USE_EXTERN_INLINES") #endif #if __has_include(<llvm-libc-decls/ctype.h>) #if defined(__HIP__) || defined(__CUDA__) #define __LIBC_ATTRS __attribute__((device)) #endif // The GNU headers like to provide these as macros, we need to undefine them so // they do not conflict with the following definitions for the GPU. #pragma push_macro("isalnum") #pragma push_macro("isalpha") #pragma push_macro("isascii") #pragma push_macro("isblank") #pragma push_macro("iscntrl") #pragma push_macro("isdigit") #pragma push_macro("isgraph") #pragma push_macro("islower") #pragma push_macro("isprint") #pragma push_macro("ispunct") #pragma push_macro("isspace") #pragma push_macro("isupper") #pragma push_macro("isxdigit") #pragma push_macro("toascii") #pragma push_macro("tolower") #pragma push_macro("toupper") #pragma push_macro("isalnum_l") #pragma push_macro("isalpha_l") #pragma push_macro("isascii_l") #pragma push_macro("isblank_l") #pragma push_macro("iscntrl_l") #pragma push_macro("isdigit_l") #pragma push_macro("isgraph_l") #pragma push_macro("islower_l") #pragma push_macro("isprint_l") #pragma push_macro("ispunct_l") #pragma push_macro("isspace_l") #pragma push_macro("isupper_l") #pragma push_macro("isxdigit_l") #undef isalnum #undef isalpha #undef isascii #undef iscntrl #undef isdigit #undef islower #undef isgraph #undef isprint #undef ispunct #undef isspace #undef isupper #undef isblank #undef isxdigit #undef toascii #undef tolower #undef toupper #undef isalnum_l #undef isalpha_l #undef iscntrl_l #undef isdigit_l #undef islower_l #undef isgraph_l #undef isprint_l #undef ispunct_l #undef isspace_l #undef isupper_l #undef isblank_l #undef isxdigit_l #pragma omp begin declare target #include <llvm-libc-decls/ctype.h> #pragma omp end declare target // Restore the original macros when compiling on the host. #if !defined(__NVPTX__) && !defined(__AMDGPU__) #pragma pop_macro("isalnum") #pragma pop_macro("isalpha") #pragma pop_macro("isascii") #pragma pop_macro("isblank") #pragma pop_macro("iscntrl") #pragma pop_macro("isdigit") #pragma pop_macro("isgraph") #pragma pop_macro("islower") #pragma pop_macro("isprint") #pragma pop_macro("ispunct") #pragma pop_macro("isspace") #pragma pop_macro("isupper") #pragma pop_macro("isxdigit") #pragma pop_macro("toascii") #pragma pop_macro("tolower") #pragma pop_macro("toupper") #pragma pop_macro("isalnum_l") #pragma pop_macro("isalpha_l") #pragma pop_macro("isascii_l") #pragma pop_macro("isblank_l") #pragma pop_macro("iscntrl_l") #pragma pop_macro("isdigit_l") #pragma pop_macro("isgraph_l") #pragma pop_macro("islower_l") #pragma pop_macro("isprint_l") #pragma pop_macro("ispunct_l") #pragma pop_macro("isspace_l") #pragma pop_macro("isupper_l") #pragma pop_macro("isxdigit_l") #endif #undef __LIBC_ATTRS #endif #endif // __CLANG_LLVM_LIBC_WRAPPERS_CTYPE_H__