summaryrefslogtreecommitdiff
path: root/scilab2c/macros/CCodeGeneration/C_SCI2CHeader.sci
blob: 5e8acd5da4968756d0844de2d3f2338c6ab22143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
function C_SCI2CHeader(FileName)
// function C_SCI2CHeader(FileName)
// -----------------------------------------------------------------
// //NUT: add description here
//
// Input data:
// //NUT: add description here
//
// Output data:
// //NUT: add description here
//
// Status:
// 21-Dec-2007 -- Raffaele Nutricato: Author.
//
// Copyright 2007 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------

// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),1,1);

// -----------------------
// --- Initialization. ---
// -----------------------
// ---------------------------
// --- End Initialization. ---
// ---------------------------

      
PrintStringInfo('/*',FileName,'file','y');
PrintStringInfo('** ************************************************',FileName,'file','y');
PrintStringInfo('** hArtes/POLIBA SCILAB2C',FileName,'file','y');
PrintStringInfo('** Contact: raffaele.nutricato@tiscali.it',FileName,'file','y');
PrintStringInfo('** ************************************************',FileName,'file','y');
PrintStringInfo('*/',FileName,'file','y');
PrintStringInfo(' ',FileName,'file','y');
PrintStringInfo(' ',FileName,'file','y');

endfunction