mirror of
https://github.com/linux-msm/qmic.git
synced 2026-02-25 13:11:34 -08:00
17 lines
226 B
C
17 lines
226 B
C
#ifndef __PARSER_H__
|
|
#define __PARSER_H__
|
|
|
|
void qmi_parse(void);
|
|
|
|
extern const char *qmi_package;
|
|
|
|
struct qmi_const {
|
|
const char *name;
|
|
unsigned value;
|
|
|
|
struct list_head node;
|
|
};
|
|
extern struct list_head qmi_consts;
|
|
|
|
#endif
|