Cobra Interactive Query Language fcts

NAME

fcts — show the names of all functions

SYNTAX

	fcts [0]

DESCRIPTION

This commands takes no arguments. The command will mark the name of all function definitions in the code. The list can then be displayed with a standard list or display command. The command also builds an internal list of the function definitions that can be used by related commands, like context, ff and fcg.

EXAMPLES

	: fcts		# recognize function definitions, and fct calls
	: l		# list the resulting matches
alternatively the list can be created (slightly) more quickly if we do not also collect the function calls for each function, by invoking the command with a 0 argument (added in version 2.9, April 2019):
	: fcts 0
	: l

NOTES

The command assumes a C or C++-like syntax.

SEE ALSO

cfg, context, fct, ff, list, display

Return to index
Manual
Tutorial
(Last Updated: 18 April 2019)