TU-Programmieren_2/exercise9/task3.c
2025-04-09 10:22:44 +02:00

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;
}