| 97 | } |
| 98 | |
| 99 | char *getStudentName(const student *stud) |
| 100 | { |
| 101 | int studNameLen = strlen(stud->name); |
| 102 | char *studName = (char *)erpc_malloc(studNameLen * sizeof(char) + 1); |
| 103 | strcpy(studName, stud->name); |
| 104 | return studName; |
| 105 | } |
| 106 | |
| 107 | float getStudentTestAverage(const student *stud) |
| 108 | { |
no test coverage detected