// Laboratorio 8 - Esercizio 3 - Asset.h // Matteo Schiff - s295565 #ifndef ASSET_DEFINED #define ASSET_DEFINED #define STR_LEN 20 #include "ExrateBST.h" typedef struct asset *Asset; void AssetFree(Asset a); int AssetCompare(Asset a, Asset b); ExrateBST AssetGetExrates(Asset a); Asset AssetRead(FILE *fp); void AssetPrint(Asset a); char * AssetTitle(Asset a); #endif