nes-proj/common/product.h
giomba d192979eb7 repository cleaned
actually noone ever needed the full contiki-ng repository,
but it was just forked in order to start developing the project quickly
2019-10-07 21:42:19 +02:00

10 lines
164 B
C

#ifndef PRODUCT_H
#define PRODUCT_H
typedef struct product_t {
uint32_t product_id;
char expiration_date[8]; // gg/mm/yy
uint32_t price;
} product_t;
#endif