⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.cpp

📁 用于词法分析的词法分析器
💻 CPP
📖 第 1 页 / 共 4 页
字号:
# 1 "CodeFrags.cpp" # 1 "/usr/include/ctype.h" 1 3  # 1 "/usr/include/features.h" 1 3         # 1 "/usr/include/sys/cdefs.h" 1 3 # 1 "/usr/include/features.h" 1 3 # 136 "/usr/include/features.h" 3# 24 "/usr/include/sys/cdefs.h" 2 3  # 50 "/usr/include/sys/cdefs.h" 3   # 100 "/usr/include/sys/cdefs.h" 3  typedef long double __long_double_t;# 128 "/usr/include/sys/cdefs.h" 3   # 134 "/usr/include/features.h" 2 3# 26 "/usr/include/ctype.h" 2 3 extern "C" {  # 1 "/usr/include/endian.h" 1 3   # 1 "/usr/include/bytesex.h" 1 3# 34 "/usr/include/endian.h" 2 3# 43 "/usr/include/ctype.h" 2 3enum{  _ISupper = ( 0  < 8 ? ((1 <<  0 ) << 8) : ((1 <<  0 ) >> 8)) ,	   _ISlower = ( 1  < 8 ? ((1 <<  1 ) << 8) : ((1 <<  1 ) >> 8)) ,	   _ISalpha = ( 2  < 8 ? ((1 <<  2 ) << 8) : ((1 <<  2 ) >> 8)) ,	   _ISdigit = ( 3  < 8 ? ((1 <<  3 ) << 8) : ((1 <<  3 ) >> 8)) ,	   _ISxdigit = ( 4  < 8 ? ((1 <<  4 ) << 8) : ((1 <<  4 ) >> 8)) ,	   _ISspace = ( 5  < 8 ? ((1 <<  5 ) << 8) : ((1 <<  5 ) >> 8)) ,	   _ISprint = ( 6  < 8 ? ((1 <<  6 ) << 8) : ((1 <<  6 ) >> 8)) ,	   _ISgraph = ( 7  < 8 ? ((1 <<  7 ) << 8) : ((1 <<  7 ) >> 8)) ,	   _ISblank = ( 8  < 8 ? ((1 <<  8 ) << 8) : ((1 <<  8 ) >> 8)) ,	   _IScntrl = ( 9  < 8 ? ((1 <<  9 ) << 8) : ((1 <<  9 ) >> 8)) ,	   _ISpunct = ( 10  < 8 ? ((1 <<  10 ) << 8) : ((1 <<  10 ) >> 8)) ,	      _ISalnum = _ISalpha | _ISdigit	 }; extern __const unsigned short int *__ctype_b;	 extern __const int *__ctype_tolower;  extern __const int *__ctype_toupper;   extern int  isalnum   (int)   ;extern int  isalpha   (int)   ;extern int  iscntrl   (int)   ;extern int  isdigit   (int)   ;extern int  islower   (int)   ;extern int  isgraph   (int)   ;extern int  isprint   (int)   ;extern int  ispunct   (int)   ;extern int  isspace   (int)   ;extern int  isupper   (int)   ;extern int  isxdigit   (int)   ;extern int  isblank   (int)   ; extern int tolower  (int __c)  ; extern int toupper  (int __c)  ; extern int isascii  (int __c)  ; extern int toascii  (int __c)  ; extern int  _toupper   (int)   ;extern int  _tolower   (int)   ;} # 9 "CodeFrags.cpp" 2# 1 "CodeFrags.h" 1 # 1 "/usr/include/g++/istream.h" 1 3 # 1 "/usr/include/g++/stream.h" 1 3  # 1 "/usr/include/g++/iostream.h" 1 3 #pragma interface# 1 "/usr/include/g++/streambuf.h" 1 3 #pragma interface   extern "C" {# 1 "/usr/include/libio.h" 1 3  # 1 "/usr/include/_G_config.h" 1 3  typedef long _G_clock_t;typedef unsigned short _G_dev_t;typedef long int _G_fpos_t;typedef unsigned short _G_gid_t;typedef unsigned long _G_ino_t;typedef unsigned short _G_mode_t;typedef unsigned short _G_nlink_t;typedef long _G_off_t;typedef int _G_pid_t;typedef int _G_ptrdiff_t;typedef unsigned long _G_sigset_t;typedef unsigned int _G_size_t;typedef long _G_time_t;typedef unsigned short _G_uid_t;typedef long int _G_wchar_t;typedef int _G_ssize_t;typedef int   _G_wint_t;typedef void * _G_va_list;typedef          int   _G_int8_t __attribute__((__mode__(__QI__)));typedef unsigned int  _G_uint8_t __attribute__((__mode__(__QI__)));typedef          int  _G_int16_t __attribute__((__mode__(__HI__)));typedef unsigned int _G_uint16_t __attribute__((__mode__(__HI__)));typedef          int  _G_int32_t __attribute__((__mode__(__SI__)));typedef unsigned int _G_uint32_t __attribute__((__mode__(__SI__)));typedef          int  _G_int64_t __attribute__((__mode__(__DI__)));typedef unsigned int _G_uint64_t __attribute__((__mode__(__DI__)));

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -