blob: c12fc9932f5e9b3af99910babd74ce173a899b17 [file] [log] [blame]
Jari Aaltof73dda02001-11-13 17:56:06 +00001/* arrayfunc.h -- declarations for miscellaneous array functions in arrayfunc.c */
2
Jari Aalto31859422009-01-12 13:36:28 +00003/* Copyright (C) 2001-2009 Free Software Foundation, Inc.
Jari Aaltof73dda02001-11-13 17:56:06 +00004
5 This file is part of GNU Bash, the Bourne Again SHell.
6
Jari Aalto31859422009-01-12 13:36:28 +00007 Bash is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
Jari Aaltof73dda02001-11-13 17:56:06 +000011
Jari Aalto31859422009-01-12 13:36:28 +000012 Bash is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
Jari Aaltof73dda02001-11-13 17:56:06 +000016
17 You should have received a copy of the GNU General Public License
Jari Aalto31859422009-01-12 13:36:28 +000018 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19*/
Jari Aaltof73dda02001-11-13 17:56:06 +000020
21#if !defined (_ARRAYFUNC_H_)
22#define _ARRAYFUNC_H_
23
24/* Must include variables.h before including this file. */
25
26#if defined (ARRAY_VARS)
27
28extern SHELL_VAR *convert_var_to_array __P((SHELL_VAR *));
Jari Aalto31859422009-01-12 13:36:28 +000029extern SHELL_VAR *convert_var_to_assoc __P((SHELL_VAR *));
Jari Aaltof73dda02001-11-13 17:56:06 +000030
Jari Aalto95732b42005-12-07 14:08:12 +000031extern SHELL_VAR *bind_array_variable __P((char *, arrayind_t, char *, int));
Jari Aalto31859422009-01-12 13:36:28 +000032extern SHELL_VAR *bind_array_element __P((SHELL_VAR *, arrayind_t, char *, int));
Jari Aalto95732b42005-12-07 14:08:12 +000033extern SHELL_VAR *assign_array_element __P((char *, char *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000034
Chet Ramey00018032011-11-21 20:51:19 -050035extern SHELL_VAR *bind_assoc_variable __P((SHELL_VAR *, char *, char *, char *, int));
36
Jari Aaltof73dda02001-11-13 17:56:06 +000037extern SHELL_VAR *find_or_make_array_variable __P((char *, int));
38
Jari Aalto95732b42005-12-07 14:08:12 +000039extern SHELL_VAR *assign_array_from_string __P((char *, char *, int));
40extern SHELL_VAR *assign_array_var_from_word_list __P((SHELL_VAR *, WORD_LIST *, int));
Jari Aalto06285672006-10-10 14:15:34 +000041
Jari Aalto31859422009-01-12 13:36:28 +000042extern WORD_LIST *expand_compound_array_assignment __P((SHELL_VAR *, char *, int));
Jari Aalto06285672006-10-10 14:15:34 +000043extern void assign_compound_array_list __P((SHELL_VAR *, WORD_LIST *, int));
Jari Aalto95732b42005-12-07 14:08:12 +000044extern SHELL_VAR *assign_array_var_from_string __P((SHELL_VAR *, char *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000045
46extern int unbind_array_element __P((SHELL_VAR *, char *));
Chet Ramey00018032011-11-21 20:51:19 -050047extern int skipsubscript __P((const char *, int, int));
Jari Aalto31859422009-01-12 13:36:28 +000048
Jari Aaltof73dda02001-11-13 17:56:06 +000049extern void print_array_assignment __P((SHELL_VAR *, int));
Jari Aalto31859422009-01-12 13:36:28 +000050extern void print_assoc_assignment __P((SHELL_VAR *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000051
52extern arrayind_t array_expand_index __P((char *, int));
53extern int valid_array_reference __P((char *));
Jari Aalto7117c2d2002-07-17 14:10:11 +000054extern char *array_value __P((char *, int, int *));
55extern char *get_array_value __P((char *, int, int *));
Jari Aaltof73dda02001-11-13 17:56:06 +000056
Jari Aaltob80f6442004-07-27 13:29:18 +000057extern char *array_keys __P((char *, int));
58
Jari Aaltof73dda02001-11-13 17:56:06 +000059extern char *array_variable_name __P((char *, char **, int *));
60extern SHELL_VAR *array_variable_part __P((char *, char **, int *));
61
62#endif
63
64#endif /* !_ARRAYFUNC_H_ */