mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
9 lines
143 B
C
9 lines
143 B
C
#ifndef __TFTP_H
|
|
#define __TFTP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int tftp_get(uint32_t ip, const char *filename, void *buffer);
|
|
|
|
#endif /* __TFTP_H */
|
|
|