diff options
author | Clément DAVID | 2017-06-22 20:21:34 +0000 |
---|---|---|
committer | Clément DAVID | 2017-06-22 20:21:34 +0000 |
commit | 33755eb085a3ca8154cf83773b23fbb8aac4ba3e (patch) | |
tree | cf885fbb29da36e591b030283d7bff7331c3e4e8 /macros/FunctionList/FL_ExistCFunction.sci | |
parent | 06686ba87471cfff538795eeb4897d078b504a6c (diff) | |
download | scilab2c-33755eb085a3ca8154cf83773b23fbb8aac4ba3e.tar.gz scilab2c-33755eb085a3ca8154cf83773b23fbb8aac4ba3e.tar.bz2 scilab2c-33755eb085a3ca8154cf83773b23fbb8aac4ba3e.zip |
Extended support for file related functions, try/catch
Fix ",d0" output argument generation
Diffstat (limited to 'macros/FunctionList/FL_ExistCFunction.sci')
-rw-r--r-- | macros/FunctionList/FL_ExistCFunction.sci | 11 |
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
|