diff options
Diffstat (limited to 'docs/examples/flag_debugging.lua.html')
-rw-r--r-- | docs/examples/flag_debugging.lua.html | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/docs/examples/flag_debugging.lua.html b/docs/examples/flag_debugging.lua.html new file mode 100644 index 0000000..38f506a --- /dev/null +++ b/docs/examples/flag_debugging.lua.html | |||
@@ -0,0 +1,87 @@ | |||
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
3 | <html> | ||
4 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
5 | <head> | ||
6 | <title>Lua-System docs</title> | ||
7 | <link rel="stylesheet" href="../ldoc.css" type="text/css" /> | ||
8 | </head> | ||
9 | <body> | ||
10 | |||
11 | <div id="container"> | ||
12 | |||
13 | <div id="product"> | ||
14 | <div id="product_logo"></div> | ||
15 | <div id="product_name"><big><b></b></big></div> | ||
16 | <div id="product_description"></div> | ||
17 | </div> <!-- id="product" --> | ||
18 | |||
19 | |||
20 | <div id="main"> | ||
21 | |||
22 | |||
23 | <!-- Menu --> | ||
24 | |||
25 | <div id="navigation"> | ||
26 | <br/> | ||
27 | <h1>Lua-System</h1> | ||
28 | |||
29 | |||
30 | <ul> | ||
31 | <li><a href="../index.html">Index</a></li> | ||
32 | </ul> | ||
33 | |||
34 | |||
35 | |||
36 | <h2>Examples</h2> | ||
37 | <ul class="nowrap"> | ||
38 | <li><a href="../examples/compat.lua.html">compat.lua</a></li> | ||
39 | <li><strong>flag_debugging.lua</strong></li> | ||
40 | <li><a href="../examples/password_input.lua.html">password_input.lua</a></li> | ||
41 | <li><a href="../examples/read.lua.html">read.lua</a></li> | ||
42 | <li><a href="../examples/readline.lua.html">readline.lua</a></li> | ||
43 | <li><a href="../examples/spinner.lua.html">spinner.lua</a></li> | ||
44 | <li><a href="../examples/spiral_snake.lua.html">spiral_snake.lua</a></li> | ||
45 | <li><a href="../examples/terminalsize.lua.html">terminalsize.lua</a></li> | ||
46 | </ul> | ||
47 | <h2>Modules</h2> | ||
48 | <ul class="nowrap"> | ||
49 | <li><a href="../modules/system.html">system</a></li> | ||
50 | </ul> | ||
51 | <h2>Classes</h2> | ||
52 | <ul class="nowrap"> | ||
53 | <li><a href="../classes/bitflags.html">bitflags</a></li> | ||
54 | </ul> | ||
55 | <h2>Topics</h2> | ||
56 | <ul class=""> | ||
57 | <li><a href="../topics/01-introduction.md.html">1. Introduction</a></li> | ||
58 | <li><a href="../topics/02-development.md.html">2. Development</a></li> | ||
59 | <li><a href="../topics/03-terminal.md.html">3. Terminal functionality</a></li> | ||
60 | <li><a href="../topics/CHANGELOG.md.html">CHANGELOG</a></li> | ||
61 | <li><a href="../topics/LICENSE.md.html">MIT License</a></li> | ||
62 | </ul> | ||
63 | |||
64 | </div> | ||
65 | |||
66 | <div id="content"> | ||
67 | |||
68 | <h2>flag_debugging.lua</h2> | ||
69 | <pre> | ||
70 | <span class="keyword">local</span> sys = <span class="global">require</span> <span class="string">"system"</span> | ||
71 | |||
72 | <span class="comment">-- Print the Windows Console flags for stdin | ||
73 | </span>sys.<span class="function-name">listconsoleflags</span>(<span class="global">io</span>.stdin) | ||
74 | |||
75 | <span class="comment">-- Print the Posix termios flags for stdin | ||
76 | </span>sys.<span class="function-name">listtermflags</span>(<span class="global">io</span>.stdin)</pre> | ||
77 | |||
78 | |||
79 | </div> <!-- id="content" --> | ||
80 | </div> <!-- id="main" --> | ||
81 | <div id="about"> | ||
82 | <i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i> | ||
83 | <i style="float:right;">Last updated 2024-06-20 23:11:37 </i> | ||
84 | </div> <!-- id="about" --> | ||
85 | </div> <!-- id="container" --> | ||
86 | </body> | ||
87 | </html> | ||