1
1
mirror of http://git.sesse.net/plocate synced 2025-10-06 04:12:44 +02:00
Files
plocate/options.h

20 lines
458 B
C
Raw Permalink Normal View History

2020-10-16 00:22:59 +02:00
#ifndef _OPTIONS_H
#define _OPTIONS_H
#include <stdint.h>
extern bool ignore_case;
extern bool only_count;
extern bool print_nul;
extern bool use_debug;
extern bool flush_cache;
2020-10-16 00:22:59 +02:00
extern bool patterns_are_regex;
extern bool use_extended_regex;
extern bool check_existence;
2020-10-16 00:22:59 +02:00
extern int64_t limit_matches;
extern int64_t limit_left; // Not strictly an option.
extern bool stdout_is_tty; // Same.
extern bool literal_printing;
2020-10-16 00:22:59 +02:00
#endif // !defined(_OPTIONS_H)