aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/lua-scripts/list.lua
blob: d23ef0447c5435e4c1dafda43cda3f403abc77dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
in_command = io.read()
if in_command == "list funcs" then
  clangreturn = Funcs()
elseif in_command == "list vars" then
  clangreturn = Vars()
elseif in_command == "list structs" then
  clangreturn = Structs()
elseif in_command == "list arrays" then
  clangreturn = Arrayss()
elseif in_command == "list classes" then
  clangreturn = Classes()
elseif in_command == "list unions" then
  clangreturn = Unions()
end