previous | start | next

The mm.c Functions

The mm.c file is the only file you will change.

You make work in teams of 1 or at most 2 people.

This file has a C struct in which you should insert your name (or names if two people are working together).

You can omit the email addresses:

team_t team = {
    /* Team name */
    "asmith+asaini",
    /* First member's full name */
    "Afred Smith",
    /* First member's email address */
    "",
    /* Second member's full name (leave blank if none) */
    "Atul Saini",
    /* Second member's email address (leave blank if none) */
    ""
};
     


previous | start | next