mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2024-12-22 06:15:31 +00:00
12 lines
205 B
C
12 lines
205 B
C
#ifndef ARGS_H
|
|
#define ARGS_H
|
|
|
|
void print_version();
|
|
void print_usage(const char *argv0);
|
|
int parse_args(int argc, char *argv[]);
|
|
|
|
/* Prints starting messages */
|
|
void print_welcome();
|
|
|
|
#endif /* ARGS_H */
|