-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path*.c
More file actions
18 lines (17 loc) · 639 Bytes
/
*.c
File metadata and controls
18 lines (17 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//search-multiple-function branch
/**
* In EmployeeOne.c,
* create search function for phone entry
* compare strings to check if they are equal, essentially same functions as before.
* create search function for salary entry
* check if the number is equal to an employee's salary.
* show example of match & no match in each function.
* update employeeMain.c due to 4 cases.
**/
//single-search-pass-function branch
/**
* In EmployeeTwo.c
* create wrapper function for phone entry and return searchEmployeeTable
* create wrapper function for salary entry and return searchEmployeeTable
* employeeMain.c should be the same.
**/