#ifndef _ECL_PATH_H_c82b2667_ #define _ECL_PATH_H_c82b2667_ /* This file is in the public domain. */ typedef struct qch QCH; struct qch { unsigned char c; unsigned char f; #define QCHF_QUOTE 0x01 #define QCHF_MAYQUOTE 0x02 #define QCHF_NODQ 0x04 } ; extern QCH *ecl_path_buf; extern int ecl_path_len; extern void ecl_path_init(void); extern void ecl_path_space(int); extern void ecl_path_complete(int); extern void ecl_path_show_completions(void); extern void ecl_path_follow_symlink(void); extern void ecl_path_brace_complete(void); extern void ecl_path_harden(void); extern void ecl_path_next(void); extern void ecl_path_prev(void); #endif