-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwordlist.cpp
More file actions
92 lines (92 loc) · 2 KB
/
Copy pathwordlist.cpp
File metadata and controls
92 lines (92 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include <string>
string dig = "\0040\0021\0022\0023\0024\0025\0026\0027\0028\0029\005";
string ch1 = "\004A\002B\002C\002D\002E\002F\002G\002H\002I\002J\002K\002L\002M\002N\002O\002P\002Q\002R\002S\002T\002U\002V\002W\002X\002Y\002Z";
string ch2 = "\002a\002b\002c\002d\002e\002f\002g\002h\002i\002j\002k\002l\002m\002n\002o\002p\002q\002r\002s\002t\002u\002v\002w\002x\002y\002z\002_\005";
string ch = ch1 + ch2;
string a[][2] = {
"int", "INT",
"long", "LONG",
"short", "SHORT",
"float", "FLOAT",
"double", "DOUBLE",
"char", "CHAR",
"unsigned", "UNSIGNED",
"signed", "SIGNED",
"const", "CONST",
"void", "VOID",
"volatile", "VOLATILE",
"enum", "ENUM",
"struct", "STRUCT",
"union", "UNION",
"if", "IF",
"else", "ELSE",
"goto", "GOTO",
"switch", "SWITCH",
"case", "CASE",
"do", "DO",
"while", "WHILE",
"for", "FOR",
"continue", "CONTINUE",
"break", "BREAK",
"return", "RETURN",
"default", "DEFAULT",
"typedef", "TYPEDEF",
"auto", "AUTO",
"register", "REGISTER",
"extern", "EXTERN",
"static", "STATIC",
"sizeof", "SIZEOF",
"+", "+",
"-", "-",
"*", "*",
"/", "/",
"%", "%",
"++", "++",
"--", "--",
"==", "==",
"!=", "!=",
"<", "<",
">", ">",
">=", ">=",
"<=", "<=",
"&&", "&&",
"||", "||",
"!", "!",
"&", "&",
"|", "|",
"^", "^",
"<<", "<<",
">>", ">>",
"~", "~",
"=", "=",
"+=", "+=",
"-=", "-=",
"*=", "*=",
"/=", "/=",
"%=", "%=",
"<<=", "<<=",//
">>=", ">>=",//
"&=", "&=",//
"^=", "^=",//
"|=", "|=",//
"?", "?",
":", ":",
"->", "->",
"(", "(",
")", ")",
"{", "{",
"}", "}",
"[", "[",
"]", "]",
"\"", "\"",
"'", "'",
"/*", "/*",
"*/", "*/",
"//", "//",
";", ";",
",", ",",
".", ".",
dig + dig + "\001", "NUMBER",
ch + "\004" + ch + "\002" + dig + "\005\001", "ID",
"\004 \002\t\002\n\005\001", "BLANK"
}