mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2024-12-22 06:15:31 +00:00
457a7a7f04
This is required for furhter maintance of kernel module. Aims to provide common interface for both
24 lines
696 B
C
24 lines
696 B
C
#ifndef ARGS_H
|
|
#define ARGS_H
|
|
#include "types.h"
|
|
#include "config.h"
|
|
|
|
void print_version(void);
|
|
void print_usage(const char *argv0);
|
|
int yparse_args(int argc, char *argv[]);
|
|
size_t print_config(char *buffer, size_t buffer_size);
|
|
|
|
// Initializes configuration storage.
|
|
int init_config(struct config_t *config);
|
|
// Allocates and initializes configuration section.
|
|
int init_section_config(struct section_config_t **section, struct section_config_t *prev);
|
|
// Frees configuration section
|
|
void free_config_section(struct section_config_t *config);
|
|
// Frees sections under config
|
|
void free_config(struct config_t config);
|
|
|
|
/* Prints starting messages */
|
|
void print_welcome(void);
|
|
|
|
#endif /* ARGS_H */
|