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

13 lines
318 B
C

/*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
#include "location.h"
int write_location_file(char *lat, char *lon);
int write_struct_location_file(struct location *lctn);
#endif /* WRITE_LOCATION_FILE_H */