15 lines
324 B
Python
15 lines
324 B
Python
from util import hook
|
|
from pycparser.cdecl import explain_c_declaration
|
|
|
|
|
|
@hook.command
|
|
def explain(inp):
|
|
".explain <c expression> -- gives an explanation of C expression"
|
|
|
|
inp = inp.encode('utf8', 'ignore')
|
|
|
|
try:
|
|
return explain_c_declaration(inp)
|
|
except Exception, e:
|
|
return 'error: %s' % e
|