feat: Initial commit
This commit is contained in:
18
Laboratorio 8/Esercizio 3/AssetList.h
Normal file
18
Laboratorio 8/Esercizio 3/AssetList.h
Normal file
@@ -0,0 +1,18 @@
|
||||
// Laboratorio 8 - Esercizio 3 - AssetList.h
|
||||
// Matteo Schiff - s295565
|
||||
|
||||
#ifndef ASSETLIST_DEFINED
|
||||
#define ASSETLIST_DEFINED
|
||||
#include "Asset.h"
|
||||
|
||||
typedef struct assetList *AssetList;
|
||||
|
||||
AssetList AssetListCreate();
|
||||
void AssetListFree(AssetList al);
|
||||
void AssetListInsert(AssetList al, Asset asset);
|
||||
Asset * AssetListGet(AssetList al, int index);
|
||||
Asset * AssetListSearch(AssetList al, char * query);
|
||||
void AssetListPrint(AssetList al);
|
||||
int AssetListLength(AssetList al);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user