-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogFiles.h
More file actions
25 lines (22 loc) · 709 Bytes
/
logFiles.h
File metadata and controls
25 lines (22 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//=========================================================================
// logFiles.h
//
// Log and data files for multiMag magnetometer utility.
//
// Author: David M. Witten II, KD0EAG
// Date: May 30, 2021
// License: GPL 3.0
//=========================================================================
#ifndef LOGFILES_h
#define LOGFILES_h
#include "main.h"
char *logHeader(int argc, char **argv, pList *p);
int readConfig(pList *p);
int openLogs(pList *p);
void closeLogs(pList *p);
int openUIPipes(pList *p);
void closeUIPipes(pList *p);
void buildOutputFileName(pList *p);
int buildOutputFilePath(pList *p);
int setOutputFileRoot(pList *p, char *outPath);
#endif // LOGFILES_h