sandbox-c/write-location-file/write-location-file.h

13 lines
318 B
C
Raw Normal View History

/*It is a tradition to use CPP tricks to avoid parsing the same header file more than once*/
#ifndef WRITE_LOCATION_FILE_H
# define WRITE_LOCATION_FILE_H
2023-01-03 15:26:01 +01:00
#include "location.h"
2023-01-02 18:25:51 +01:00
int write_location_file(char *lat, char *lon);
2023-01-03 15:26:01 +01:00
int write_struct_location_file(struct location *lctn);
#endif /* WRITE_LOCATION_FILE_H */