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

📄 lexer.c

📁 AVR的USB文件
💻 C
📖 第 1 页 / 共 4 页
字号:
/* A lexical scanner generated by flex *//* Scanner skeleton version: * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ */#define FLEX_SCANNER#define YY_FLEX_MAJOR_VERSION 2#define YY_FLEX_MINOR_VERSION 5#include <stdio.h>#include <errno.h>/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */#ifdef c_plusplus#ifndef __cplusplus#define __cplusplus#endif#endif#ifdef __cplusplus#include <stdlib.h>#ifndef _WIN32#include <unistd.h>#endif/* Use prototypes in function declarations. */#define YY_USE_PROTOS/* The "const" storage-class-modifier is valid. */#define YY_USE_CONST#else	/* ! __cplusplus */#if __STDC__#define YY_USE_PROTOS#define YY_USE_CONST#endif	/* __STDC__ */#endif	/* ! __cplusplus */#ifdef __TURBOC__ #pragma warn -rch #pragma warn -use#include <io.h>#include <stdlib.h>#define YY_USE_CONST#define YY_USE_PROTOS#endif#ifdef YY_USE_CONST#define yyconst const#else#define yyconst#endif#ifdef YY_USE_PROTOS#define YY_PROTO(proto) proto#else#define YY_PROTO(proto) ()#endif/* Returned upon end-of-file. */#define YY_NULL 0/* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index.  If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)/* Enter a start condition.  This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */#define BEGIN yy_start = 1 + 2 */* Translate the current start state into a value that can be later handed * to BEGIN to return to the state.  The YYSTATE alias is for lex * compatibility. */#define YY_START ((yy_start - 1) / 2)#define YYSTATE YY_START/* Action number for EOF rule of a given start state. */#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)/* Special action meaning "start processing a new file". */#define YY_NEW_FILE yyrestart( yyin )#define YY_END_OF_BUFFER_CHAR 0/* Size of default input buffer. */#define YY_BUF_SIZE 16384typedef struct yy_buffer_state *YY_BUFFER_STATE;extern int yyleng;extern FILE *yyin, *yyout;#define EOB_ACT_CONTINUE_SCAN 0#define EOB_ACT_END_OF_FILE 1#define EOB_ACT_LAST_MATCH 2/* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator).  This * avoids problems with code like: * * 	if ( condition_holds ) *		yyless( 5 ); *	else *		do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. *//* Return all but the first 'n' matched characters back to the input stream. */#define yyless(n) \	do \		{ \		/* Undo effects of setting up yytext. */ \		*yy_cp = yy_hold_char; \		YY_RESTORE_YY_MORE_OFFSET \		yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \		YY_DO_BEFORE_ACTION; /* set up yytext again */ \		} \	while ( 0 )#define unput(c) yyunput( c, yytext_ptr )/* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */typedef unsigned int yy_size_t;struct yy_buffer_state	{	FILE *yy_input_file;	char *yy_ch_buf;		/* input buffer */	char *yy_buf_pos;		/* current position in input buffer */	/* Size of input buffer in bytes, not including room for EOB	 * characters.	 */	yy_size_t yy_buf_size;	/* Number of characters read into yy_ch_buf, not including EOB	 * characters.	 */	int yy_n_chars;	/* Whether we "own" the buffer - i.e., we know we created it,	 * and can realloc() it to grow it, and should free() it to	 * delete it.	 */	int yy_is_our_buffer;	/* Whether this is an "interactive" input source; if so, and	 * if we're using stdio for input, then we want to use getc()	 * instead of fread(), to make sure we stop fetching input after	 * each newline.	 */	int yy_is_interactive;	/* Whether we're considered to be at the beginning of a line.	 * If so, '^' rules will be active on the next match, otherwise	 * not.	 */	int yy_at_bol;	/* Whether to try to fill the input buffer when we reach the	 * end of it.	 */	int yy_fill_buffer;	int yy_buffer_status;#define YY_BUFFER_NEW 0#define YY_BUFFER_NORMAL 1	/* When an EOF's been seen but there's still some text to process	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we	 * shouldn't try reading from the input source any more.  We might	 * still have a bunch of tokens to match, though, because of	 * possible backing-up.	 *	 * When we actually see the EOF, we change the status to "new"	 * (via yyrestart()), so that the user can continue scanning by	 * just pointing yyin at a new input file.	 */#define YY_BUFFER_EOF_PENDING 2	};static YY_BUFFER_STATE yy_current_buffer = 0;/* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". */#define YY_CURRENT_BUFFER yy_current_buffer/* yy_hold_char holds the character lost when yytext is formed. */static char yy_hold_char;static int yy_n_chars;		/* number of characters read into yy_ch_buf */int yyleng;/* Points to current character in buffer. */static char *yy_c_buf_p = (char *) 0;static int yy_init = 1;		/* whether we need to initialize */static int yy_start = 0;	/* start state number *//* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin.  A bit of a hack ... */static int yy_did_buffer_switch_on_eof;void yyrestart YY_PROTO(( FILE *input_file ));void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));void yy_load_buffer_state YY_PROTO(( void ));YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));static void *yy_flex_alloc YY_PROTO(( yy_size_t ));static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));static void yy_flex_free YY_PROTO(( void * ));#define yy_new_buffer yy_create_buffer#define yy_set_interactive(is_interactive) \	{ \	if ( ! yy_current_buffer ) \		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \	yy_current_buffer->yy_is_interactive = is_interactive; \	}#define yy_set_bol(at_bol) \	{ \	if ( ! yy_current_buffer ) \		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \	yy_current_buffer->yy_at_bol = at_bol; \	}#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)typedef unsigned char YY_CHAR;FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;typedef int yy_state_type;extern char *yytext;#define yytext_ptr yytextstatic yy_state_type yy_get_previous_state YY_PROTO(( void ));static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));static int yy_get_next_buffer YY_PROTO(( void ));static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));/* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */#define YY_DO_BEFORE_ACTION \	yytext_ptr = yy_bp; \	yyleng = (int) (yy_cp - yy_bp); \	yy_hold_char = *yy_cp; \	*yy_cp = '\0'; \	yy_c_buf_p = yy_cp;#define YY_NUM_RULES 84#define YY_END_OF_BUFFER 85static yyconst short int yy_accept[355] =    {   0,        0,    0,    0,    0,    0,    0,    0,    0,   85,   83,       81,   80,    4,    6,   83,   77,    3,   83,    1,    1,       79,   78,   83,   83,   83,   83,   83,   83,   83,   83,       83,   83,   83,   83,   83,   83,   83,   83,   17,   18,       10,   84,   84,    7,    8,   81,    0,    3,    1,    3,        9,    2,    0,    0,    0,    0,   82,    0,    0,    0,        0,    0,   32,   60,    0,    0,    0,    0,    0,   75,        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,        0,    0,    0,    0,    0,    0,    0,   17,   16,   14,       15,   11,   13,   12,    2,    5,    0,   21,    0,    0,        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,        0,    0,    0,    0,    0,   43,    0,    0,    0,    0,        0,    0,    0,    0,   63,    0,    0,    0,    0,   57,        0,    0,   76,    0,   22,    0,    0,    0,   24,    0,        0,    0,    0,    0,    0,    0,    0,   36,   37,    0,        0,    0,   45,    0,    0,    0,    0,    0,    0,   64,        0,    0,    0,   54,    0,   56,    0,    0,    0,    0,        0,    0,    0,    0,    0,    0,   31,    0,    0,    0,        0,    0,    0,    0,   41,   42,    0,    0,    0,    0,        0,    0,    0,    0,    0,   62,    0,    0,    0,    0,       65,    0,   20,    0,    0,    0,    0,   29,   30,    0,        0,   34,    0,    0,    0,    0,    0,    0,   46,    0,       61,    0,   49,    0,    0,    0,    0,   53,   55,   58,        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,        0,    0,    0,    0,    0,    0,    0,   67,   66,    0,        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,        0,    0,    0,    0,    0,   44,    0,    0,    0,    0,        0,   69,   68,    0,   19,    0,   59,    0,    0,    0,        0,    0,    0,   38,   39,   40,    0,    0,    0,    0,        0,   72,   73,    0,    0,    0,   28,    0,    0,    0,        0,   74,   47,    0,    0,    0,    0,    0,    0,    0,       71,   70,    0,    0,    0,   50,   51,   52,    0,    0,        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,        0,    0,    0,    0,    0,   27,    0,    0,    0,    0,        0,    0,   33,   35,    0,   23,   25,    0,    0,    0,        0,   26,   48,    0    } ;static yyconst int yy_ec[256] =    {   0,        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,        1,    1,    2,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    2,    1,    4,    5,    1,    1,    1,    1,    1,        1,    6,    7,    8,    7,    9,   10,   11,   12,   13,       14,   14,   15,   14,   14,   14,   14,   16,   17,    1,       18,    1,    1,    1,   19,   19,   19,   19,   19,   19,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,   20,    1,    1,   21,    1,   22,   23,   24,   25,       26,   27,   28,   29,   30,    1,   31,   32,   33,   34,       35,   36,    1,   37,   38,   39,   40,   41,   42,   43,       44,   45,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1    } ;static yyconst int yy_meta[46] =    {   0,        1,    1,    2,    2,    1,    1,    3,    1,    3,    1,        4,    4,    4,    4,    4,    1,    1,    1,    5,    2,        1,    5,    5,    5,    5,    5,    5,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1    } ;static yyconst short int yy_base[362] =    {   0,        0,    0,   43,   45,    0,    0,  422,  421,  423,  426,      420,  426,  426,  426,   43,  426,   42,  415,   51,   55,      426,  426,   37,   45,  394,   25,  387,   46,  383,   50,       38,   60,   58,   65,  373,   63,  379,  389,    0,  426,      426,   69,  426,  426,  426,  412,   92,   98,  105,  110,      426,  115,    0,  379,  399,  384,  426,  380,  106,  373,      371,  385,  426,  426,  384,  362,  371,   98,  365,  426,      369,  106,  368,  365,  373,  361,  353,  113,  365,  358,      349,  362,  356,  367,  346,  359,  350,    0,  426,  426,      426,  426,  426,  426,  126,    0,  356,  426,  359,  349,      354,  361,  358,  351,  343,  347,  340,  352,  355,  340,      353,  338,  342,  350,  344,  120,  124,  341,  328,  332,      334,  340,  338,  326,  426,  332,  335,  345,  333,  426,      326,  318,  426,   79,  426,  335,  331,  314,  426,  329,      317,  325,  321,  313,  306,  310,  304,  426,  426,  125,      125,  313,  426,  318,  317,  305,  316,  313,  313,  132,      299,  293,  314,  426,  324,  426,  308,  307,  294,  306,      304,  307,  296,  301,  293,  300,  426,  302,  286,  278,      284,  298,  297,  280,  426,  426,  285,  282,  290,  292,      278,  285,  286,  131,  288,  426,  288,  276,  296,  281,      128,  275,  426,  267,  264,  263,  277,  426,  426,  272,      269,  426,  268,  263,  268,  265,  268,  271,  426,  259,      426,  270,  426,  260,  254,  264,  251,  426,  426,  426,      133,  264,  240,  262,  257,  261,  246,  254,  240,  239,      246,  250,  230,  242,  250,  239,  249,  426,  426,  239,      229,  238,  232,  238,  239,  226,  238,  130,  237,  240,      234,  233,  220,  219,  230,  426,  223,  228,  226,  231,      219,  426,  426,  224,  426,  223,  426,  132,  222,  221,      138,  225,  224,  426,  426,  426,  218,  206,  203,  205,      202,  426,  218,  201,  202,  199,  426,  205,  199,  208,      207,  426,  426,  205,  159,  204,  204,  206,  199,  196,      426,  426,  199,  198,  186,  426,  426,  426,  196,  189,      183,  197,  186,  185,  195,  183,  182,  191,  180,  189,      188,  167,  186,  181,  173,  426,  161,  160,  166,  158,      159,  125,  426,  426,   85,  426,  426,   81,   54,   49,       53,  426,  426,  426,  172,  177,  182,  185,  189,  194,      196    } ;static yyconst short int yy_def[362] =    {   0,      354,    1,  355,  355,  356,  356,  357,  357,  354,  354,      354,  354,  354,  354,  358,  354,  354,  354,  358,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  359,  354,      354,  360,  354,  354,  354,  354,  358,  354,  354,  354,      354,  354,  361,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  359,  354,  354,      354,  354,  354,  354,  354,  361,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,    0,  354,  354,  354,  354,  354,  354,      354    } ;static yyconst short int yy_nxt[472] =    {   0,       10,   11,   12,   13,   14,   10,   15,   16,   17,   18,       19,   20,   20,   20,   20,   10,   21,   22,   10,   10,       10,   10,   23,   24,   25,   26,   27,   10,   10,   28,       10,   29,   30,   31,   10,   32,   33,   34,   35,   10,       36,   37,   10,   38,   10,   40,   41,   40,   41,   47,       60,   48,   50,   50,   50,   50,   50,  354,   54,   52,       57,   61,   42,   52,   42,   49,   49,   49,   49,   49,       63,   66,   70,   58,   55,   67,   56,   71,  353,   68,       64,   72,   77,   78,   69,  352,   84,   73,   79,   85,       80,   90,  351,   53,   81,   91,   74,   75,   47,  169,       48,   76,   92,   82,  170,   93,  350,   94,   50,   50,       50,   50,   50,   52,  349,   49,   49,   49,   49,   49,       50,   50,   50,   50,   50,   95,   95,   95,   95,   95,      101,  111,  102,  115,  122,  112,   95,   95,   95,   95,       95,  152,  116,  103,  154,  184,  104,  182,  231,  185,      123,  124,  194,  294,  195,  155,  186,  348,  153,  224,      183,  252,  225,  232,  253,  278,  298,  279,  295,  299,      316,  317,   39,   39,   39,   39,   39,   43,   43,   43,       43,   43,   44,   44,   44,   44,   44,   49,   49,   88,      347,   88,   88,   88,   89,   89,   89,   89,   89,   96,       96,  346,  345,  344,  343,  342,  341,  340,  339,  338,      337,  336,  335,  334,  333,  332,  331,  330,  329,  328,      327,  326,  325,  324,  323,  322,  321,  320,  319,  318,      315,  314,  313,  312,  311,  310,  309,  308,  307,  306,      305,  304,  303,  302,  301,  300,  297,  296,  293,  292,      291,  290,  289,  288,  287,  286,  285,  284,  283,  282,      281,  280,  277,  276,  275,  274,  273,  272,  271,  270,      269,  268,  267,  266,  265,  264,  263,  262,  261,  260,      259,  258,  257,  256,  255,  254,  251,  250,  249,  248,      247,  246,  245,  244,  243,  242,  241,  240,  239,  238,      237,  236,  235,  234,  233,  230,  229,  228,  227,  226,      223,  222,  221,  220,  219,  218,  217,  216,  215,  214,      213,  212,  211,  210,  209,  208,  207,  206,  205,  204,      203,  202,  201,  200,  199,  198,  197,  196,  193,  192,      191,  190,  189,  188,  187,  181,  180,  179,  178,  177,      176,  175,  174,  173,  172,  171,  168,  167,  166,  165,      164,  163,  162,  161,  160,  159,  158,  157,  156,  151,      150,  149,  148,  147,  146,  145,  144,  143,  142,  141,      140,  139,  138,  137,  136,  135,  134,  133,  132,  131,      130,  129,  128,  127,  126,  125,  121,  120,  119,  118,      117,  114,  113,  110,  109,  108,  107,  106,  105,  100,       99,   98,   97,   46,   87,   86,   83,   65,   62,   59,       51,   46,  354,   45,   45,    9,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354,  354,  354,  354,  354,  354,  354,  354,  354,  354,      354    } ;static yyconst short int yy_chk[472] =    {   0,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,        1,    1,    1,    1,    1,    3,    3,    4,    4,   15,       26,   15,   17,   17,   17,   17,   17,   19,   23,   19,       24,   26,    3,   20,    4,   20,   20,   20,   20,   20,       28,   30,   31,   24,   23,   30,   23,   31,  351,   30,       28,   32,   33,   33,   30,  350,   36,   32,   34,   36,       34,   42,  349,   19,   34,   42,   32,   32,   47,  134,       47,   32,   42,   34,  134,   42,  348,   42,   48,   48,       48,   48,   48,   49,  345,   49,   49,   49,   49,   49,       50,   50,   50,   50,   50,   52,   52,   52,   52,   52,       59,   68,   59,   72,   78,   68,   95,   95,   95,   95,       95,  116,   72,   59,  117,  151,   59,  150,  201,  151,       78,   78,  160,  278,  160,  117,  151,  342,  116,  194,      150,  231,  194,  201,  231,  258,  281,  258,  278,  281,      305,  305,  355,  355,  355,  355,  355,  356,  356,  356,      356,  356,  357,  357,  357,  357,  357,  358,  358,  359,      341,  359,  359,  359,  360,  360,  360,  360,  360,  361,      361,  340,  339,  338,  337,  335,  334,  333,  332,  331,      330,  329,  328,  327,  326,  325,  324,  323,  322,  321,      320,  319,  315,  314,  313,  310,  309,  308,  307,  306,      304,  301,  300,  299,  298,  296,  295,  294,  293,  291,      290,  289,  288,  287,  283,  282,  280,  279,  276,  274,      271,  270,  269,  268,  267,  265,  264,  263,  262,  261,      260,  259,  257,  256,  255,  254,  253,  252,  251,  250,      247,  246,  245,  244,  243,  242,  241,  240,  239,  238,      237,  236,  235,  234,  233,  232,  227,  226,  225,  224,      222,  220,  218,  217,  216,  215,  214,  213,  211,  210,      207,  206,  205,  204,  202,  200,  199,  198,  197,  195,      193,  192,  191,  190,  189,  188,  187,  184,  183,  182,      181,  180,  179,  178,  176,  175,  174,  173,  172,  171,      170,  169,  168,  167,  165,  163,  162,  161,  159,  158,      157,  156,  155,  154,  152,  147,  146,  145,  144,  143,      142,  141,  140,  138,  137,  136,  132,  131,  129,  128,      127,  126,  124,  123,  122,  121,  120,  119,  118,  115,      114,  113,  112,  111,  110,  109,  108,  107,  106,  105,

⌨️ 快捷键说明

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