nes-proj/common/product.h

10 lines
164 B
C
Raw Normal View History

2019-04-13 07:29:17 +00:00
#ifndef PRODUCT_H
#define PRODUCT_H
typedef struct product_t {
uint32_t product_id;
char expiration_date[8]; // gg/mm/yy
uint32_t price;
2019-04-13 07:29:17 +00:00
} product_t;
#endif