blob: 7649e3fa5a50fd3afba0d5f14cdcd0d85fe42e75 (
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);
|