tftp_example.h 504 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. /*
  7. * File: tftp_example.h
  8. * Author: dziegel
  9. *
  10. * Created on February 17, 2018, 3:43 PM
  11. */
  12. #ifndef TFTP_EXAMPLE_H
  13. #define TFTP_EXAMPLE_H
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. void tftp_example_init_server(void);
  18. void tftp_example_init_client(void);
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif /* TFTP_EXAMPLE_H */