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
42
43
44
45
46
47
48
49
50
51
52
53
54
|
function SCI2CClassName = FL_GetFunctionClass(FunFileName,SCI2CClassSpecifier,ReportFileName)
// function SCI2CClassName = FL_GetFunctionClass(FunFileName,SCI2CClassSpecifier,ReportFileName)
// -----------------------------------------------------------------
// //NUT: add description here
//
// Input data:
// //NUT: add description here
//
// Output data:
// //NUT: add description here
//
// Status:
// 11-Jul-2007 -- Nutricato Raffaele: Author.
//
// Copyright 2007 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------
// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),3,3);
// ---------------------------------------
// --- Read the class of the function. ---
// ---------------------------------------
// --- Open the .sci file (read only). ---
inannfid = SCI2COpenFileRead(FunFileName);
FoundClass = 0;
if (meof(inannfid) == 0)
check_string = stripblanks(mgetl(inannfid,1));
if (~isempty(check_string))
if (SCI2Cstrncmps1size(SCI2CClassSpecifier,check_string))
SCI2CClassName = part(check_string,length(SCI2CClassSpecifier)+1:length(check_string));
// #RNU_RES_B
PrintStringInfo(' Function belongs to class: '+SCI2CClassName+'.',ReportFileName,'file','y');
// #RNU_RES_E
FoundClass = 1;
else
error(9999, 'Could not find ""'+SCI2CClassSpecifier+'"" in '+FunFileName+'.');
end
end
end
mclose(inannfid);
if (FoundClass == 0)
error(9999, 'Could not find ""'+SCI2CClassSpecifier+'"" specifier.');
end
// -------------------------------------------
// --- End read the class of the function. ---
// -------------------------------------------
endfunction
|