summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrafa_99 <raroma09@gmail.com>2021-09-05 14:36:06 +0100
committerrafa_99 <raroma09@gmail.com>2021-09-05 14:36:06 +0100
commit62879b76d365c5c7d03b76aeab89f99722ab36a1 (patch)
tree37d02e06708db65ab0de9aded45c814114d47ba1
parent694389dace8f39ac5add7f9b4305a172c6995fdf (diff)
Fixed up some indentations
-rw-r--r--include/video.h2
-rw-r--r--libs/string.h4
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);