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

9 lines
239 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
int write_location_file(char *lat, char *lon);
#endif /* WRITE_LOCATION_FILE_H */