R3TagNext
R3TAG *R3TagNext(R3TAG **tags);
tags - address of tag pointer.
next tag in given tag list
This function is used for scanning tag lists.
void processtags(R3TAG *tags)
{
R3TAG *tag;
while(tag = R3Tagnext(&tags))
{
switch(tag-ident)
{
case ....
}
}
}