15 lines
185 B
C
15 lines
185 B
C
#ifndef P9_H
|
|
#define P9_H
|
|
|
|
typedef struct {
|
|
int id;
|
|
char name[32];
|
|
double price;
|
|
int stock;
|
|
} Product;
|
|
|
|
Product* find_product(Product* products, int num_products, int id);
|
|
|
|
#endif
|
|
|