=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/builtin/compobj.c,v retrieving revision 1.2 retrieving revision 1.5 diff -u -p -r1.2 -r1.5 --- OpenXM_contrib2/asir2000/builtin/compobj.c 2000/08/21 08:31:18 1.2 +++ OpenXM_contrib2/asir2000/builtin/compobj.c 2002/01/22 01:00:08 1.5 @@ -23,7 +23,7 @@ * shall be made on your publication or presentation in any form of the * results obtained by use of the SOFTWARE. * (4) In the event that you modify the SOFTWARE, you shall notify FLL by - * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification + * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification * for such modification or the source code of the modified part of the * SOFTWARE. * @@ -45,19 +45,48 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/builtin/compobj.c,v 1.1.1.1 1999/12/03 07:39:07 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/builtin/compobj.c,v 1.4 2000/09/21 09:19:26 noro Exp $ */ #include "ca.h" #include "parse.h" #include "comp.h" void Parfreg(); +void Pstruct_type(); struct ftab comp_tab[] = { {"arfreg",Parfreg,8}, + {"struct_type",Pstruct_type,1}, {0,0,0}, }; +void Pstruct_type(arg,rp) +NODE arg; +Q *rp; +{ + Obj obj; + char *name; + int ind; + +/* asir_assert(ARG0(arg),O_STR,"struct_type"); */ + obj = (Obj)ARG0(arg); + if ( !obj ) + error("struct_type : invalid argument"); + switch ( OID(obj) ) { + case O_STR: + name = ((STRING)obj)->body; + ind = structtoindex(name); + break; + case O_COMP: + ind = ((COMP)obj)->type; + break; + default: + error("struct_type : invalid argument"); + break; + } + STOQ(ind,*rp); +} + void Parfreg(arg,rp) NODE arg; Q *rp; @@ -73,7 +102,7 @@ Q *rp; if ( !strcmp(s[i].name,name) ) break; if ( i == LSS->n ) - error("argreg : no such structure"); + error("arfreg : no such structure"); t = (P)ARG1(arg); s[i].arf.add = !t ? 0 : (FUNC)VR(t)->priv; t = (P)ARG2(arg); s[i].arf.sub = !t ? 0 : (FUNC)VR(t)->priv;