dllibinfo
Returns list of available symbols in an shared library.
📝Syntax
c = dllibinfo(lib)
📥Input Arguments
Parameter Description
lib a dllib handle: library already loaded.
📤Output Arguments
Parameter Description
c a cell of strings.
📄Description

dllibinfo returns list of available symbols in an shared library.

💡Examples
lib = dlopen(modulepath('dynamic_link', 'builtin'))
c = dllibinfo(lib)
🔗See Also
dlopen
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub