exec.library: Create a globally unique AbsExecBase symbol
[AROS.git] / compiler / arossupport / libfindtagitem.c
blobfcccf7c8ef8b596bfa342628486198b1630c258e
1 #include <proto/arossupport.h>
3 struct TagItem *LibFindTagItem(Tag tagValue, const struct TagItem *tagList)
5 const struct TagItem *tstate = tagList;
6 struct TagItem *tag;
8 while ((tag = LibNextTagItem(&tstate)))
10 if (tag->ti_Tag == tagValue)
11 return tag;
14 return NULL;