mirror of
https://github.com/perk11/runwhenidle.git
synced 2026-01-08 21:27:57 -05:00
15 lines
560 B
C
15 lines
560 B
C
#ifndef RUNWHENIDLE_ARGUMENTS_PARSING_H
|
|
#define RUNWHENIDLE_ARGUMENTS_PARSING_H
|
|
extern long start_monitor_after_ms;
|
|
extern long unsigned user_idle_timeout_ms;
|
|
|
|
/**
|
|
* Parses command line arguments and sets relevant program options.
|
|
*
|
|
* @param argc The number of command line arguments.
|
|
* @param argv An array of strings representing the command line arguments.
|
|
* @return A character pointer to the remaining command line arguments as a single string.
|
|
*/
|
|
char *parse_command_line_arguments(int argc, char *argv[]);
|
|
#endif //RUNWHENIDLE_ARGUMENTS_PARSING_H
|