Program created in a previous activity in which a menu with various options was implemented.
Folder with name List_aps
in your
shared folder in Subversion.
Local copy here.
Make the following modifications to the program that manages a menu with options:
Create a new subfolder (if this is the case) in your work space shared by Subversion for the program you are about to create.
Define a data type struct node
that, with the same information as
struct ap_scan_info
, will be the base of a linked list.
Implement the function struct node
*create_node(struct ap_scan_info *cell)
that receives an address
of a cell within an array and creates the node of the linked list that
stores a copy of the same information.
Implement the function void print_node(struct
ap_scan_info *cell)
that receives an address of a node and shows
its information in the screen.
Optionally, upload the file to the repository with
svn commit
.