nes-proj/project/common/product.h

10 lines
161 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
float price;
} product_t;
#endif