Fixed cut-and-paste error in r54909.
[AROS.git] / rom / utility / findtagitem.c
blob29e7e5b333005dd96d1ee05d1e63841e558ee11d
1 /*
2 Copyright © 1995-2017, 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 <proto/arossupport.h>
14 /*****************************************************************************
16 NAME */
17 #include <proto/utility.h>
19 AROS_LH2I(struct TagItem *, FindTagItem,
21 /* SYNOPSIS */
22 AROS_LHA(Tag, tagValue, D0),
23 AROS_LHA(const struct TagItem *, tagList, A0),
25 /* LOCATION */
26 struct UtilityBase *, UtilityBase, 5, Utility)
28 /* FUNCTION
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 INTERNALS
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
48 /* Use code from libarossupport */
49 return LibFindTagItem(tagValue, tagList);
51 AROS_LIBFUNC_EXIT
52 } /* FindTagItem */