mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 19:19:00 +08:00
2a541175b5
On my way, fixed a couple of cases where we had `()` in the header, and non-empty argument list in the source file. PUBLISHED_FROM=5519526cf84e2bbd425a726fcc112fea1a95cbf1
16 lines
394 B
C
16 lines
394 B
C
/*
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
* All rights reserved
|
|
*/
|
|
|
|
#ifndef CS_MONGOOSE_EXAMPLES_CC3200_DATA_H_
|
|
#define CS_MONGOOSE_EXAMPLES_CC3200_DATA_H_
|
|
|
|
#include "mongoose.h"
|
|
|
|
void data_collect(void);
|
|
void data_init_sensors(int tmp006_addr, int bm222_addr);
|
|
void data_conn_handler(struct mg_connection *nc, int ev, void *p);
|
|
|
|
#endif /* CS_MONGOOSE_EXAMPLES_CC3200_DATA_H_ */
|