diff options
-rw-r--r-- | include/video.h | 2 | ||||
-rw-r--r-- | 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); |