blob: 2a071f27af5d577716d9a59ae4b45d767ecb2614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function opoutsize = FA_SZ_OPDOTSLASH(in1size,in2size)
// function opoutsize = FA_SZ_OPDOTSLASH(in1size,in2size)
// -----------------------------------------------------------------
// Alias of FA_SZ_OPDOTSTAR.
//
//
// Status:
// 08-Mar-2008 -- Raffaele Nutricato: Author.
// 08-Mar-2008 -- Alberto Morea: Test Ok.
//
// Copyright 2008 Raffaele Nutricato & Alberto Morea.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------
opoutsize = FA_SZ_OPDOTSTAR(in1size,in2size);
endfunction
|