summaryrefslogtreecommitdiff
path: root/macros/CCodeGeneration/C_GenDeclarations_Dup.sci
diff options
context:
space:
mode:
authorukashanoor2017-07-07 17:12:14 +0530
committerukashanoor2017-07-07 17:12:14 +0530
commitec1677606d3e636a47d4fd0853f83868b3953314 (patch)
tree460ef055bfa213fa98a9306035ad0578a6036e9e /macros/CCodeGeneration/C_GenDeclarations_Dup.sci
parent87823db220f4c3b8bee16c0b2e08027704de1efe (diff)
downloadscilab2c-ec1677606d3e636a47d4fd0853f83868b3953314.tar.gz
scilab2c-ec1677606d3e636a47d4fd0853f83868b3953314.tar.bz2
scilab2c-ec1677606d3e636a47d4fd0853f83868b3953314.zip
array declaration
Diffstat (limited to 'macros/CCodeGeneration/C_GenDeclarations_Dup.sci')
-rw-r--r--macros/CCodeGeneration/C_GenDeclarations_Dup.sci7
1 files changed, 7 insertions, 0 deletions
diff --git a/macros/CCodeGeneration/C_GenDeclarations_Dup.sci b/macros/CCodeGeneration/C_GenDeclarations_Dup.sci
index 475e2e0c..bdaf9c0e 100644
--- a/macros/CCodeGeneration/C_GenDeclarations_Dup.sci
+++ b/macros/CCodeGeneration/C_GenDeclarations_Dup.sci
@@ -11,6 +11,10 @@ function Cdeclaration = C_GenDeclarations_Dup(InArg,NInArg,com_type,ArgStruct,CD
//
// Status:
// 27-Oct-2007 -- Raffaele Nutricato: Author.
+//
+// 25-June-2017 -- Ukasha Noor: Modified it.
+// This function is called for array declaration in C.
+//
// 10-Jun-2008 -- Raffaele Nutricato: adapted to work with realloc function.
//
// Copyright 2007 Raffaele Nutricato.
@@ -84,6 +88,9 @@ if (ArgStruct.Dimension > 0)
computedSize = computedSize + ' * ' + ArgStruct.Size(sizeIterator);
computedSizeField = computedSizeField + ', ' + ArgStruct.Size(sizeIterator);
end
+// Modified Changes: row tells number of rows and col is number of columns in array.
+// col_type tells whether it is floatComplex or doubleComplex or real.
+// and accordingly it declares the array.
Cdeclaration(1) = Cdeclaration(1)+C_Type(ArgStruct.Type)+' '+ArgStruct.Name+'['+computedSize+']={';
row = eval(ArgStruct.Size(1))
col = eval(ArgStruct.Size(2))