changed header & added my name

This commit is contained in:
MarcUs7i 2024-11-14 15:11:05 +01:00
parent 234764fe1b
commit aae3fcf4fd
3 changed files with 32 additions and 5 deletions

10
car.c
View file

@ -1,9 +1,15 @@
*----------------------------------------------------------
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Author: */ <my name>; /*
* Author: Marc Tismonar
* ----------------------------------------------------------
* Description:
* Implementation of car.h.
* ----------------------------------------------------------
*/
#include "car.h"
Car get_car(CarType carType) {
Car car = {carType, RED, 0.0, 0.0, 0};
return car;
}