mirror of
https://github.com/brmlab/brmbar.git
synced 2025-06-07 21:04:00 +02:00
19 lines
262 B
C
19 lines
262 B
C
#ifndef _BRMBAR_ITEMIO_H_
|
|
#define _BRMBAR_ITEMIO_H_
|
|
|
|
#include "defines.h"
|
|
|
|
struct item {
|
|
char ean[EAN_MAXLEN];
|
|
char name[NAME_MAXLEN];
|
|
int price;
|
|
};
|
|
|
|
extern int items_count;
|
|
|
|
extern struct item items[ITEM_MAXNUM];
|
|
|
|
extern void fill_items();
|
|
|
|
#endif
|
|
|