Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 1 | /* tilde.h: Externally available variables and function in libtilde.a. */ |
| 2 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 3 | /* Copyright (C) 1992-2009 Free Software Foundation, Inc. |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 4 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 5 | This file contains the Readline Library (Readline), a set of |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 6 | routines for providing Emacs style line input to programs that ask |
| 7 | for it. |
| 8 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 9 | Readline is free software: you can redistribute it and/or modify |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 10 | it under the terms of the GNU General Public License as published by |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 11 | the Free Software Foundation, either version 3 of the License, or |
| 12 | (at your option) any later version. |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 13 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 14 | Readline is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 18 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 19 | You should have received a copy of the GNU General Public License |
| 20 | along with Readline. If not, see <http://www.gnu.org/licenses/>. |
| 21 | */ |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 22 | |
| 23 | #if !defined (_TILDE_H_) |
| 24 | # define _TILDE_H_ |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 25 | |
Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 26 | #ifdef __cplusplus |
| 27 | extern "C" { |
| 28 | #endif |
| 29 | |
| 30 | /* A function can be defined using prototypes and compile on both ANSI C |
| 31 | and traditional C compilers with something like this: |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 32 | extern char *func PARAMS((char *, char *, int)); */ |
Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 33 | |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 34 | #if !defined (PARAMS) |
Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 35 | # if defined (__STDC__) || defined (__GNUC__) || defined (__cplusplus) |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 36 | # define PARAMS(protos) protos |
Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 37 | # else |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 38 | # define PARAMS(protos) () |
Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 39 | # endif |
| 40 | #endif |
| 41 | |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 42 | typedef char *tilde_hook_func_t PARAMS((char *)); |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 43 | |
Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 44 | /* If non-null, this contains the address of a function that the application |
| 45 | wants called before trying the standard tilde expansions. The function |
| 46 | is called with the text sans tilde, and returns a malloc()'ed string |
| 47 | which is the expansion, or a NULL pointer if the expansion fails. */ |
Jari Aalto | 28ef6c3 | 2001-04-06 19:14:31 +0000 | [diff] [blame] | 48 | extern tilde_hook_func_t *tilde_expansion_preexpansion_hook; |
Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 49 | |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 50 | /* If non-null, this contains the address of a function to call if the |
| 51 | standard meaning for expanding a tilde fails. The function is called |
| 52 | with the text (sans tilde, as in "foo"), and returns a malloc()'ed string |
| 53 | which is the expansion, or a NULL pointer if there is no expansion. */ |
Jari Aalto | 28ef6c3 | 2001-04-06 19:14:31 +0000 | [diff] [blame] | 54 | extern tilde_hook_func_t *tilde_expansion_failure_hook; |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 55 | |
| 56 | /* When non-null, this is a NULL terminated array of strings which |
| 57 | are duplicates for a tilde prefix. Bash uses this to expand |
| 58 | `=~' and `:~'. */ |
| 59 | extern char **tilde_additional_prefixes; |
| 60 | |
| 61 | /* When non-null, this is a NULL terminated array of strings which match |
| 62 | the end of a username, instead of just "/". Bash sets this to |
| 63 | `:' and `=~'. */ |
| 64 | extern char **tilde_additional_suffixes; |
| 65 | |
| 66 | /* Return a new string which is the result of tilde expanding STRING. */ |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 67 | extern char *tilde_expand PARAMS((const char *)); |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 68 | |
| 69 | /* Do the work of tilde expansion on FILENAME. FILENAME starts with a |
| 70 | tilde. If there is no expansion, call tilde_expansion_failure_hook. */ |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 71 | extern char *tilde_expand_word PARAMS((const char *)); |
Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 72 | |
Jari Aalto | 95732b4 | 2005-12-07 14:08:12 +0000 | [diff] [blame] | 73 | /* Find the portion of the string beginning with ~ that should be expanded. */ |
| 74 | extern char *tilde_find_word PARAMS((const char *, int, int *)); |
| 75 | |
Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 76 | #ifdef __cplusplus |
| 77 | } |
| 78 | #endif |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 79 | |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 80 | #endif /* _TILDE_H_ */ |