litex/software/include/net/tftp.h

11 lines
222 B
C
Raw Normal View History

2012-05-24 13:22:27 -04:00
#ifndef __TFTP_H
#define __TFTP_H
#include <stdint.h>
int tftp_get(uint32_t ip, const char *filename, void *buffer);
2013-04-16 12:55:28 -04:00
int tftp_put(uint32_t ip, const char *filename, const void *buffer, int size);
2012-05-24 13:22:27 -04:00
#endif /* __TFTP_H */