blob: 5e7260606abcd2504d503d020779317c785ca5af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
function outbool = IsNanSize(instring)
// function outbool = IsNanSize(instring)
// -----------------------------------------------------------------
//
// Status:
// 11-Feb-2008 -- Nutricato Raffaele: Author.
//
// Copyright 2008 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------
SCI2CNInArgCheck(argn(2),1,1);
outbool = %F;
indexval = strindex(instring,'__SCI2CNANSIZE');
if(length(indexval)>=1)
outbool = %T;
end
endfunction
|