• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 /*
8  * File:   tftp_example.h
9  * Author: dziegel
10  *
11  * Created on February 17, 2018, 3:43 PM
12  */
13 
14 #ifndef TFTP_EXAMPLE_H
15 #define TFTP_EXAMPLE_H
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 void tftp_example_init_server(void);
22 void tftp_example_init_client(void);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* TFTP_EXAMPLE_H */
29 
30