blob: 737c9692ee31490f80a7e595aa8ca8d37a31a627 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************
plaparse.h
Parser for Berkeley standard PLA files into raw fusemaps.
***************************************************************************/
#ifndef __PLAPARSE_H__
#define __PLAPARSE_H__
#include "osdcore.h"
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
/* parse a file (read into memory) into a jed_data structure */
int pla_parse(const void *data, size_t length, jed_data *result);
#endif /* __PLAPARSE_H__ */
|