mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-13 15:10:49 +02:00
commit bash-20200605 snapshot
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/* flags.h -- a list of all the flags that the shell knows about. You add
|
||||
a flag to this program by adding the name here, and in flags.c. */
|
||||
|
||||
/* Copyright (C) 1993-2015 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1993-2020 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Bash, the Bourne Again SHell.
|
||||
|
||||
@@ -71,15 +71,15 @@ extern int restricted;
|
||||
extern int restricted_shell;
|
||||
#endif /* RESTRICTED_SHELL */
|
||||
|
||||
extern int *find_flag __P((int));
|
||||
extern int change_flag __P((int, int));
|
||||
extern char *which_set_flags __P((void));
|
||||
extern void reset_shell_flags __P((void));
|
||||
extern int *find_flag PARAMS((int));
|
||||
extern int change_flag PARAMS((int, int));
|
||||
extern char *which_set_flags PARAMS((void));
|
||||
extern void reset_shell_flags PARAMS((void));
|
||||
|
||||
extern char *get_current_flags __P((void));
|
||||
extern void set_current_flags __P((const char *));
|
||||
extern char *get_current_flags PARAMS((void));
|
||||
extern void set_current_flags PARAMS((const char *));
|
||||
|
||||
extern void initialize_flags __P((void));
|
||||
extern void initialize_flags PARAMS((void));
|
||||
|
||||
/* A macro for efficiency. */
|
||||
#define change_flag_char(flag, on_or_off) change_flag (flag, on_or_off)
|
||||
|
||||
Reference in New Issue
Block a user