diff --git a/src/main.c b/src/main.c index 81727cb..137bfd3 100644 --- a/src/main.c +++ b/src/main.c @@ -9,11 +9,13 @@ /** * Simple function for adding 2 integers. * - * @brief Sum a + b * @todo Rename function + * + * @brief Sum a + b + * * @param a, b The numbers to sum + * * @return Sum of a + b - * @author 8dcc */ int test_func(int a, int b) { return a + b; @@ -21,7 +23,13 @@ int test_func(int a, int b) { /** * @todo Argument handling - * @brief Entry point of the program + * + * @brief Entry point of the program + * + * @param argc Number of arguments + * @param argv Vector of string arguments + * + * @return Exit code */ int main(int argc, char** argv) { printf("Hello, world!\n");