i-bash/alias.h

71 lines
2.1 KiB
C
Raw Normal View History

1996-08-26 18:22:31 +00:00
/* alias.h -- structure definitions. */
2009-01-12 13:36:28 +00:00
/* Copyright (C) 1987-2009 Free Software Foundation, Inc.
1996-08-26 18:22:31 +00:00
This file is part of GNU Bash, the Bourne Again SHell.
2009-01-12 13:36:28 +00:00
Bash is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
1996-08-26 18:22:31 +00:00
2009-01-12 13:36:28 +00:00
Bash is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
1996-08-26 18:22:31 +00:00
You should have received a copy of the GNU General Public License
2009-01-12 13:36:28 +00:00
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
#if !defined (_ALIAS_H_)
#define _ALIAS_H_
1996-08-26 18:22:31 +00:00
2001-11-13 17:56:06 +00:00
#include "stdc.h"
1996-08-26 18:22:31 +00:00
2001-11-13 17:56:06 +00:00
#include "hashlib.h"
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
typedef struct alias {
1996-08-26 18:22:31 +00:00
char *name;
char *value;
1996-12-23 17:02:34 +00:00
char flags;
} alias_t;
/* Values for `flags' member of struct alias. */
#define AL_EXPANDNEXT 0x1
#define AL_BEINGEXPANDED 0x2
1996-08-26 18:22:31 +00:00
/* The list of known aliases. */
extern HASH_TABLE *aliases;
2001-11-13 17:56:06 +00:00
extern void initialize_aliases __P((void));
1996-08-26 18:22:31 +00:00
/* Scan the list of aliases looking for one with NAME. Return NULL
1996-12-23 17:02:34 +00:00
if the alias doesn't exist, else a pointer to the alias. */
2001-11-13 17:56:06 +00:00
extern alias_t *find_alias __P((char *));
1996-08-26 18:22:31 +00:00
/* Return the value of the alias for NAME, or NULL if there is none. */
2001-11-13 17:56:06 +00:00
extern char *get_alias_value __P((char *));
1996-08-26 18:22:31 +00:00
/* Make a new alias from NAME and VALUE. If NAME can be found,
then replace its value. */
2001-11-13 17:56:06 +00:00
extern void add_alias __P((char *, char *));
1996-08-26 18:22:31 +00:00
/* Remove the alias with name NAME from the alias list. Returns
the index of the removed alias, or -1 if the alias didn't exist. */
2001-11-13 17:56:06 +00:00
extern int remove_alias __P((char *));
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
/* Remove all aliases. */
2001-11-13 17:56:06 +00:00
extern void delete_all_aliases __P((void));
1996-08-26 18:22:31 +00:00
/* Return an array of all defined aliases. */
2001-11-13 17:56:06 +00:00
extern alias_t **all_aliases __P((void));
1996-12-23 17:02:34 +00:00
/* Expand a single word for aliases. */
2001-11-13 17:56:06 +00:00
extern char *alias_expand_word __P((char *));
/* Return a new line, with any aliases expanded. */
extern char *alias_expand __P((char *));
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
#endif /* _ALIAS_H_ */