TD2_DEV51_Qualite_Algo/ping-report/include/db-sqlite.h

9 lines
179 B
C
Raw Normal View History

2024-09-16 20:38:18 +02:00
#ifndef DB_SQLITE_H
#define DB_SQLITE_H
int db_connect();
int db_disconnect();
int insert_hourly_report(double mean,double max,double min,int high,int loss,int reached);
#endif