15 lines
234 B
C
15 lines
234 B
C
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern char * editor;
|
|
extern char * folder;
|
|
extern char * custom_rm;
|
|
extern bool is_dry_run;
|
|
extern bool is_recursive;
|
|
extern bool do_permissions;
|
|
extern bool do_owner;
|
|
|
|
#endif
|