1VHDLABLVECTOR(3) ABL FUNCTIONS VHDLABLVECTOR(3)
2
3
4
6 vhdlablvector - gives the index and the name of a vectorized name.
7
9 #include "abl101.h"
10 char ∗vhdlablvector( Name, Index )
11 char ∗Name;
12 long ∗Index;
13
15 Name A vectorized name.
16
17 Index A pointer to long.
18
20 vhdlablvector searches the index of a vectorized name, and the vector's
21 name.
22
24 If Name is a vectorized name, vhdlablvector returns the vector's name
25 using namealloc, and its index throw Index. Otherwise, it returns a
26 null pointer.
27
29 #include "abl101.h"
30 long Index;
31 char ∗Name;
32 Name = vhdlablvector( "vec 2", &Index );
33 /* displays Name:vec, Index:2 */
34 printf( "Name:%s, Index:%d0, Name, Index );
35
37 abl(1), ablvhdlname(3).
38
39
40
41
42
43
44ASIM/LIP6 October 1, 1997 VHDLABLVECTOR(3)