Table of Contents
Program created in a previous activity in which a menu with various options was implemented.
Using the code for the program with the menu, make the following modifications:
Add an implement a new menu option that prints the
ratio of current quality level to maximum quality level for a given
access point. The prototype of the implemented function must be
float quality_ratio(struct ap_scan_info ap);
.
Add an implement a new menu option that allows the
user to edit the current quality of a given access point. The
prototype of the implemented function must be void
swap_quality(struct ap_scan_info *ap, unsigned int
*quality);
.
Add an implement a new menu option that prints the MAC
address of the access point with the highest quality. The prototype of
the implemented function must be void print_best_quality(struct
ap_scan_info *array);
.