COMP2017 9017 Assignment 2
#ifndef MTLL_H
#define MTLL_H
Copyright By PowCoder代写 加微信 powcoder
struct mtll {
// Define your struct here
// A few suggested function prototypes:
// Feel free to change or improve these as you need.
extern struct mtll *mtll_create();
extern void mtll_free(struct mtll *);
extern void mtll_view(struct mtll *);
extern void mtll_view_all(struct mtll **, size_t);
extern void mtll_remove(struct mtll **, size_t, struct mtll *);
// You will likely need other functions for Parts 2 and 3,
// And for general input / output management
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com