Guest User

Untitled

a guest
Jan 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.67 KB | None | 0 0
  1. Menu_init()
  2. {
  3.     Opt = []; Opt[] = []; Fun = []; Fun[] = []; Arg = []; Arg[] = [];
  4.     TTL[] = { "Menu1", "Menu2", "Menu3" };
  5.    
  6.     Opt[TTL[0]][] = { "One", "Two", "Three", "Four", "Five" };
  7.     Fun[TTL[0]][] = { ::option, ::option, ::option, ::option };
  8.     Arg[TTL[0]][] = { One, two, three, four, five };
  9.    
  10.     Opt[TTL[1]][] = { "One", "Two", "Three", "Four", "Five" };
  11.     Fun[TTL[1]][] = { ::option, ::option, ::option, ::option };
  12.     Arg[TTL[1]][] = { One, two, three, four, five };
  13.    
  14.     Opt[TTL[2]][] = { "One", "Two", "Three", "Four", "Five" };
  15.     Fun[TTL[2]][] = { ::option, ::option, ::option, ::option };
  16.     Arg[TTL[2]][] = { One, two, three, four, five };
  17. }
Add Comment
Please, Sign In to add comment