1 
2 #ifndef __GABEDIT_SCP_H__
3 #define __GABEDIT_SCP_H__
4 
5 int scp_put_file(char* fout,char* ferr,
6 			 char* filename,char* localdir,char* remotedir,
7 			 char *hostname,char *username,char* password);
8 int scp_get_file(char* fout,char* ferr,
9 			 char* filename,char* localdir,char* remotedir,
10 			 char *hostname,char *username,char* password);
11 
12 #endif /* __GABEDIT_SCP_H__ */
13 
14