Removed unneeded functions and libraries

This commit is contained in:
_
2018-04-06 14:46:17 -07:00
parent 95ffa588b1
commit a8b7c51a3a
2 changed files with 3 additions and 37 deletions

View File

@@ -13,16 +13,12 @@ struct PldHeader {
#pragma pack(pop)
// input: contents of the .pld file.
// allocates heap memory
//struct PldHeader *getpldh(const char*);
// input: pointer to a struct, contents of the .pld file.
// * = pass by reference of a struct PldHeader
bool getpldh(struct PldHeader*, const char*);
// frees heap memory
void destroypldh(struct PldHeader*);
// input: a pld header struct.
// * = pass by reference of a struct PldHeader
void printpldh(struct PldHeader*);
#endif