feat: Initial commit
This commit is contained in:
16
Laboratorio 8/Esercizio 3/Asset.h
Normal file
16
Laboratorio 8/Esercizio 3/Asset.h
Normal file
@@ -0,0 +1,16 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user