blob: 71cf047545fba2a733400acc732ce04094b9311c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
typedef struct video
{
char *title, *author, *id, *duration;
} Video;
Video createVideo (char *title, char *author, char *id, char *duration);
void printVideo (char *format, Video *videos, int numberOfVideos);
void freeVideo (Video *v);
|