-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.h
35 lines (29 loc) · 959 Bytes
/
input.h
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
26
27
28
29
30
31
32
33
34
35
/*=========================================================================
*
* Filename: input.h
*
* Author: Marcelo Mourier
* Created: Mon Apr 11 11:24:16 MDT 2022
*
* Description: Input file parsers
*
*=========================================================================
*
* Copyright (c) 2022 Marcelo Mourier
*
*=========================================================================
*/
#ifndef INPUT_H_
#define INPUT_H_
#include "defs.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int parseCsvFile(CmdArgs *pArgs, GpsTrk *pTrk, const char *inFile);
extern int parseFitFile(CmdArgs *pArgs, GpsTrk *pTrk, const char *inFile);
extern int parseGpxFile(CmdArgs *pArgs, GpsTrk *pTrk, const char *inFile);
extern int parseTcxFile(CmdArgs *pArgs, GpsTrk *pTrk, const char *inFile);
#ifdef __cplusplus
};
#endif
#endif /* INPUT_H_ */