From 62879b76d365c5c7d03b76aeab89f99722ab36a1 Mon Sep 17 00:00:00 2001 From: rafa_99 Date: Sun, 5 Sep 2021 14:36:06 +0100 Subject: Fixed up some indentations --- include/video.h | 2 +- libs/string.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/video.h b/include/video.h index 7649e3f..5156600 100644 --- a/include/video.h +++ b/include/video.h @@ -2,7 +2,7 @@ typedef struct video { - char *title, *author, *id, *duration; + char *title, *author, *id, *duration; } Video; Video createVideo (char *title, char *author, char *id, char *duration); diff --git a/libs/string.h b/libs/string.h index d692095..224d285 100644 --- a/libs/string.h +++ b/libs/string.h @@ -2,8 +2,8 @@ typedef struct string { - char *string; - int length; + char *string; + int length; } String; String newString (char *string); -- cgit v1.2.3