]> git.street.me.uk Git - andy/viking.git/blame - test/gpx2gpx.c
Add 'View Waypoints' option to the TrackWaypoint layer menu options, which sets the...
[andy/viking.git] / test / gpx2gpx.c
CommitLineData
f9ab07c8
GB
1#include <stdio.h>
2#include <gpx.h>
3
4int main(int argc, char *argv[])
5{
6 VikTrwLayer *trw = NULL;
0034ee33 7 g_type_init ();
f9ab07c8
GB
8 trw = vik_trw_layer_new(0);
9 a_gpx_read_file(trw, stdin);
10 a_gpx_write_file(trw, stdout);
0034ee33
RN
11 vik_trw_layer_free (trw);
12 return 0;
f9ab07c8 13}