1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 
5 #ifndef BESWIFI_H
6 #define BESWIFI_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 
13 int bes_wifi_init(void);
14 
15 int bes_wifi_connect(const char *ssid, const char *passwd, unsigned char *bssid);
16 
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 #endif /* BESWIFI_H */
22