openurl.library: 64-bit pointer casting cleanups
[AROS.git] / rom / utility / findtagitem.c
blob1b792c1c6520d506315e834fbdccd7b6c0668980
1 /*
2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
9 #include <exec/types.h>
10 #include <utility/utility.h>
11 #include <utility/tagitem.h>
12 #include <aros/libcall.h>
13 #include <proto/arossupport.h>
15 /*****************************************************************************
17 NAME */
18 #include <proto/utility.h>
20 AROS_LH2I(struct TagItem *, FindTagItem,
22 /* SYNOPSIS */
23 AROS_LHA(Tag, tagValue, D0),
24 AROS_LHA(const struct TagItem *, tagList, A0),
26 /* LOCATION */
27 struct UtilityBase *, UtilityBase, 5, Utility)
29 /* FUNCTION
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 AROS_LIBFUNC_INIT
51 /* Use code from libarossupport */
52 return LibFindTagItem(tagValue, tagList);
54 AROS_LIBFUNC_EXIT
55 } /* FindTagItem */