1
0

feat: Initial commit

This commit is contained in:
2024-03-22 17:37:24 +01:00
parent 4288bd63a1
commit 6732a7a166
120 changed files with 9620 additions and 0 deletions

View 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