1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

SFTP client now successfully handles cd, ls, get and put.

[originally from svn r939]
This commit is contained in:
Simon Tatham
2001-02-24 12:02:35 +00:00
parent 48b988b439
commit 094dd30d95
3 changed files with 70 additions and 23 deletions

3
sftp.h
View File

@ -67,6 +67,7 @@ struct fxp_attrs {
struct fxp_handle {
char *hstring;
int hlen;
};
struct fxp_name {
@ -91,7 +92,7 @@ int fxp_init(void);
* Canonify a pathname. Concatenate the two given path elements
* with a separating slash, unless the second is NULL.
*/
char *fxp_realpath(char *path, char *path2);
char *fxp_realpath(char *path);
/*
* Open a file.