summaryrefslogtreecommitdiff
path: root/macros/FunctionList/FL_ExistCFunction.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/FunctionList/FL_ExistCFunction.sci')
-rw-r--r--macros/FunctionList/FL_ExistCFunction.sci11
1 files changed, 11 insertions, 0 deletions
diff --git a/macros/FunctionList/FL_ExistCFunction.sci b/macros/FunctionList/FL_ExistCFunction.sci
index 5b63ec5b..dbb9121f 100644
--- a/macros/FunctionList/FL_ExistCFunction.sci
+++ b/macros/FunctionList/FL_ExistCFunction.sci
@@ -99,7 +99,18 @@ end
if (flagexist == %F)
// #RNU_RES_B
+ AvailableDat = SCI2CAvailableCDat;
+
PrintStringInfo(' C Function Name not found in the ""Available"" , ""Converted"" and ""ToBeConverted"" function lists.',ReportFileName,'file','y');
+ load(AvailableDat,'Available');
+ PrintStringInfo('Available: ' + strcat(Available(grep(Available, ASTFunName)), ' '),ReportFileName,'file','y');
+ clear Available
+ load(ConvertedDat,'Converted');
+ PrintStringInfo('Converted: ' + strcat(Converted(grep(Converted, ASTFunName)), ' '),ReportFileName,'file','y');
+ clear Converted
+ load(ToBeConvertedDat,'ToBeConverted');
+ PrintStringInfo('ToBeConverted: ' + ToBeConverted.SCIFunctionName + ' ' + ToBeConverted.CFunctionName,ReportFileName,'file','y');
+ clear ToBeConverted
// #RNU_RES_E
end