diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2002-09-11 22:41:51 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2002-09-11 22:41:51 +0000 |
commit | cb94cc7387ca3bbbd76ad311a9fb8b19b0235dd5 (patch) | |
tree | f5ee8b0d61abb8d579fef78802154f3e46d1f453 /usr.bin/ssh/sftp-common.h | |
parent | 99feb6c05dcddbc467a8b1d7cec2f94845d7b275 (diff) |
support for short/long listings and globbing in "ls"; ok markus@
Diffstat (limited to 'usr.bin/ssh/sftp-common.h')
-rw-r--r-- | usr.bin/ssh/sftp-common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp-common.h b/usr.bin/ssh/sftp-common.h index 4c126bf1065..201611cc4bc 100644 --- a/usr.bin/ssh/sftp-common.h +++ b/usr.bin/ssh/sftp-common.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-common.h,v 1.3 2001/06/26 17:27:24 markus Exp $ */ +/* $OpenBSD: sftp-common.h,v 1.4 2002/09/11 22:41:50 djm Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -40,7 +40,9 @@ struct Attrib { void attrib_clear(Attrib *); void stat_to_attrib(struct stat *, Attrib *); +void attrib_to_stat(Attrib *, struct stat *); Attrib *decode_attrib(Buffer *); void encode_attrib(Buffer *, Attrib *); +char *ls_file(char *, struct stat *, int); const char *fx2txt(int); |