blob: 5156600e208d1398e9c0d6ea8e9314dcca67ddbf (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
typedef struct video
{
char *title, *author, *id, *duration;
} Video;
Video createVideo (char *title, char *author, char *id, char *duration);
void freeVideo (Video *v);
|