Commit e3a9c6af authored by Deomid Ryabkov's avatar Deomid Ryabkov Committed by Cesanta Bot

Mass-fix header guards

PUBLISHED_FROM=7e5fc4da88069a6193d911660f522b43ed1a5d40
parent 3f1a33e4
......@@ -31,8 +31,8 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __BOARD_H
#define __BOARD_H
#ifndef CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_BOARD_H_
#define CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_BOARD_H_
#ifdef __cplusplus
extern "C" {
......@@ -97,4 +97,4 @@ extern "C" {
}
#endif
#endif /* __BOARD_H */
#endif /* CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_BOARD_H_ */
......@@ -43,8 +43,8 @@
*
* ============================================================================
*/
#ifndef __MSP_EXP432P401R_H
#define __MSP_EXP432P401R_H
#ifndef CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_MSP_EXP432P401R_H_
#define CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_MSP_EXP432P401R_H_
#ifdef __cplusplus
extern "C" {
......@@ -250,4 +250,4 @@ extern void MSP_EXP432P401R_initWiFi(void);
}
#endif
#endif /* __MSP_EXP432P401R_H */
#endif /* CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_MSP_EXP432P401R_H_ */
......@@ -3,12 +3,12 @@
* All rights reserved
*/
#ifndef CS_MONGOOSE_EXAMPLES_CC3200_WIFI_H_
#define CS_MONGOOSE_EXAMPLES_CC3200_WIFI_H_
#ifndef CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_WIFI_H_
#define CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_WIFI_H_
#include <stdbool.h>
bool wifi_setup_ap(const char *ssid, const char *pass, int channel);
bool wifi_setup_sta(const char *ssid, const char *pass);
#endif /* CS_MONGOOSE_EXAMPLES_CC3200_WIFI_H_ */
#endif /* CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_WIFI_H_ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment