mirror of
https://github.com/joel16/VitaShell.git
synced 2024-12-04 17:57:04 +00:00
17 lines
271 B
C
17 lines
271 B
C
/*
|
|
* Copyright (c) 2015 Sergi Granell (xerpi)
|
|
*/
|
|
|
|
#ifndef FTP_H
|
|
#define FTP_H
|
|
|
|
#include <psp2/types.h>
|
|
|
|
/* Returns PSVita's IP and FTP port. 0 on success */
|
|
int ftp_init(char *vita_ip, unsigned short int *vita_port);
|
|
void ftp_fini();
|
|
int ftp_is_initialized();
|
|
|
|
|
|
#endif
|