-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.h
38 lines (22 loc) · 748 Bytes
/
edit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef EDIT_H
#define EDIT_H
#include "types.h"
typedef struct mp3details
{
FILE *fptr_mp3;
char mp3fname[32];
FILE *duplicate_fptr_mp3;
char *duplicate_fname;
char tags[5];
uint eStringSize;
char eString[258];
uint temp1Size;
long temp2Size;
}editmp3Details;
Status edit_read_validate_argu(int argc,char *argv[],editmp3Details *tagReader);
Status edit_f_open(editmp3Details *tagReader);
Status edit_check_id3(editmp3Details *tagReader);
Status edit_check_modifier(char *argv[],editmp3Details *tagReader);
Status edit_validation(int argc,char * argv[],editmp3Details *tagReader);
Status edit(char *argv[],editmp3Details *tagReader);
#endif