mirror of
https://github.com/BernardoGiordano/Checkpoint
synced 2024-12-04 06:19:11 +00:00
16 lines
302 B
C
16 lines
302 B
C
|
#ifndef FTP_H
|
||
|
#define FTP_H
|
||
|
|
||
|
/*! Loop status */
|
||
|
typedef enum {
|
||
|
LOOP_CONTINUE, /*!< Continue looping */
|
||
|
LOOP_RESTART, /*!< Reinitialize */
|
||
|
LOOP_EXIT, /*!< Terminate looping */
|
||
|
} loop_status_t;
|
||
|
|
||
|
int ftp_init(void);
|
||
|
loop_status_t ftp_loop(void);
|
||
|
void ftp_exit(void);
|
||
|
|
||
|
#endif
|