diff options
Diffstat (limited to 'src/location-manual.c')
-rw-r--r-- | src/location-manual.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/location-manual.c b/src/location-manual.c index 1eca22e..d14fe98 100644 --- a/src/location-manual.c +++ b/src/location-manual.c @@ -82,6 +82,17 @@ location_manual_free(location_manual_state_t *state) { } +void +location_manual_print_help(FILE *f) +{ + fputs(_("Specify location manually.\n"), f); + fputs("\n", f); + + fputs(_(" First argument is latitude,\n" + " second argument is longitude\n"), f); + fputs("\n", f); +} + int location_manual_get_location(location_manual_state_t *state, float *lat, float *lon) |