blob: 737b7de430475cbd144a4357cf2ca07576d8ec5b (
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
42
43
44
45
46
|
function [TBFlagfound,TBPosition] = ST_FindPos(TBName,SymbolTableFileName)
// function [TBFlagfound,TBPosition] = ST_FindPos(TBName,SymbolTableFileName)
// -----------------------------------------------------------------
// #RNU_RES_B
// Finds position of symbol TBName in the symbol table.
//
// Input data:
// //NUT: add description here
//
// Output data:
// //NUT: add description here
//
// #RNU_RES_E
// Status:
// 26-Oct-2007 -- Raffaele Nutricato: Author.
// 26-Oct-2007 -- Alberto Morea: Test Ok.
//
// Copyright 2007 Raffaele Nutricato & Alberto Morea.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------
// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),2,2);
// --- Load symbol table. ---
SCI2CSymbolTable = ST_Load(SymbolTableFileName);
// --- Find position of the line to be removed. ---
TBFlagfound = 0;
TBPosition = 0;
NEntries = max(size(SCI2CSymbolTable));
for countertable = 1:NEntries
if (mtlb_strcmp(TBName,SCI2CSymbolTable(countertable).Name))
TBFlagfound = TBFlagfound + 1;
TBPosition = countertable;
end
end
if (TBFlagfound > 1)
error(9999, 'Symbol table conflict: found two symbols with the same name ""'+TBName+'"".');
end
endfunction
|