13 lines
359 B
C
13 lines
359 B
C
/// @file
|
|
/// @brief Task3: function definitons
|
|
|
|
#include "task3.h" // struct StringStats, task3_stringstats
|
|
|
|
/// @todo Include C standard library headers as needed
|
|
|
|
/// @todo Implement this function according the the requirements specified in task3.h
|
|
struct StringStats task3_stringstats(const char* str) {
|
|
struct StringStats res = {0, 0};
|
|
return res;
|
|
}
|