aboutsummaryrefslogtreecommitdiff
path: root/teco.h
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2025-05-03 15:58:01 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2025-05-03 15:58:01 +0300
commit9deaff57e11036f96b93e0ed79b39cac7fcffa04 (patch)
treea8b86d7d17825304b555caa4a9f0675d594954de /teco.h
parenta41e94c5da2acf868ec97de610afa06583dc843f (diff)
downloadvideoteco-fork-9deaff57e11036f96b93e0ed79b39cac7fcffa04.tar.gz
DOS: expand glob patterns when opening files
* This is not done by the shell in DOS. * As a side effect, we support all of the Csh-like constructs like {a,b,c} in contrast to Watcom's fnmatch().
Diffstat (limited to 'teco.h')
-rw-r--r--teco.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/teco.h b/teco.h
index 8cd22b6..1a2bdc1 100644
--- a/teco.h
+++ b/teco.h
@@ -731,3 +731,4 @@ void term_delete_line(int,int);
struct buff_header *buff_find(char *);
struct buff_header *buff_duplicate(struct buff_header *);
struct window *screen_split_window(struct window *,int,int);
+struct wildcard_expansion *expand_filename(char *);