(C) 1998 AROS - The Amiga Research OS


NAME
#include <proto/utility.h>

BOOL TagInArray (tagValue , tagArray)

LOCATION
In UtilityBase at offset 15

SYNOPSIS
Tag tagValue
Tag * tagArray

FUNCTION
Determines whether the value tagValue exists in an array of Tags pointed to by tagArray. This array must be contiguous, and must be terminated by TAG_DONE.

This is an array of Tags (ie: Tag tagArray[]), not an array of TagItems (ie: struct TagItem tagArray[]).

INPUTS
tagValue
The value of the Tag to search for.
tagArray
The ARRAY of Tag's to scan through.

RESULT
TRUE if tagValue exists in tagArray FALSE otherwise

EXAMPLE

SEE ALSO
<utility/tagitem.h>, FilterTagItems()

NOTES

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
20.08.1997 digulla
Polish.

Renamed utility_intern.h to intern.h.

27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
24.10.1996 aros
Use the official AROS macros over the __AROS versions.
22.10.1996 aros
Some more utility.library functions.