search for: _rl_h

Displaying 2 results from an estimated 2 matches for "_rl_h".

2014 Oct 31
0
[PATCH 1/3] fish: rl.{c, h} - escaping functions for readline
...POSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef _RL_H + +#ifdef __cplusplus +extern "C" { +#endif + +extern char * bs_escape_filename (char *p); +extern char * bs_unescape_filename (char *p); + +#ifdef __cplusplus +} +#endif + +#endif /* !_RL_H */ -- 1.9.3
2014 Oct 31
6
[PATCH 0/3] WIP readline escaping functions
From: Maros Zatko <hacxman@gmail.com> Auxiliary functions for readline to support space character escaping in filenames in future. Escaping function is taken from fish.c (used to be parse_quoted_string) plus its un-escaping counterpart. There are a few tests for both. Maros Zatko (3): fish: rl.{c,h} - escaping functions for readline fish: basic tests for readline escaping autotools: