1223534Shselasky/* $FreeBSD$ */
2223534Shselasky
3223534Shselasky/*-
4223534Shselasky * Copyright (c) 2011 Hans Petter Selasky. All rights reserved.
5223534Shselasky *
6223534Shselasky * Redistribution and use in source and binary forms, with or without
7223534Shselasky * modification, are permitted provided that the following conditions
8223534Shselasky * are met:
9223534Shselasky * 1. Redistributions of source code must retain the above copyright
10223534Shselasky *    notice, this list of conditions and the following disclaimer.
11223534Shselasky * 2. Redistributions in binary form must reproduce the above copyright
12223534Shselasky *    notice, this list of conditions and the following disclaimer in the
13223534Shselasky *    documentation and/or other materials provided with the distribution.
14223534Shselasky *
15223534Shselasky * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16223534Shselasky * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17223534Shselasky * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18223534Shselasky * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19223534Shselasky * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20223534Shselasky * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21223534Shselasky * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22223534Shselasky * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23223534Shselasky * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24223534Shselasky * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25223534Shselasky * SUCH DAMAGE.
26223534Shselasky */
27223534Shselasky
28223534Shselasky#ifndef _BUS_LOAD_FILE_H_
29223534Shselasky#define	_BUS_LOAD_FILE_H_
30223534Shselasky
31223534Shselaskyvoid	load_file(const char *, uint8_t **, uint32_t *);
32223534Shselasky
33223534Shselasky#endif					/* _BUS_LOAD_FILE_H_ */
34