1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef QUOTES_H #define QUOTES_H struct quote { char *symbol; char *currency; double price, multiplier, change_percent; }; void quote_free(struct quote *q); struct quote *quote_find(struct quote **quotes, int n_quotes, const char *symbol, const char *currency); #endif