Xbasic
FUNCTIONS_GET Function
Syntax
Function_List as C = FUNCTIONS_GET(C Types,C Limitations)
Arguments
- Function_List
A CR-LF delimited list of function names and prototypes.
- Types
"*" = all types.
- Limitations
"F" = Functions, "G" = Graphics, "X" = Xbasic
Description
The FUNCTIONS_GET() function returns a list of function prototypes - types of '*' means all types, Limitations F=functions,X=Xbasic,G=graphic.
Example
dim flist as C flist = functions_get("*", "F") fcount = line_count(flist) ? fcount = 1158
See Also