R3TagNext

FUNCTION:

R3TagNext

TEMPLATE:

R3TAG *R3TagNext(R3TAG **tags);

PARAMETERS:

tags - address of tag pointer.

RETURN VALUE:

next tag in given tag list

DESCRIPTION:

This function is used for scanning tag lists.

EXAMPLE:
 void processtags(R3TAG *tags)
 {
 R3TAG *tag;

 while(tag = R3Tagnext(&tags))
 {
 switch(tag-ident)
 {
 case ....
 }
 }
 }