Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Contents of /trunk/src/filedumper.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 97 - (show annotations) (download) (as text)
Sun Feb 1 17:11:08 2009 UTC (16 years, 2 months ago) by amb
File MIME type: text/x-csrc
File size: 1442 byte(s)
Rename some variable types.

1 /***************************************
2 $Header: /home/amb/CVS/routino/src/filedumper.c,v 1.15 2009-02-01 17:11:06 amb Exp $
3
4 Memory file dumper.
5 ******************/ /******************
6 Written by Andrew M. Bishop
7
8 This file Copyright 2008,2009 Andrew M. Bishop
9 It may be distributed under the GNU Public License, version 2, or
10 any higher version. See section COPYING of the GNU Public license
11 for conditions under which this file may be redistributed.
12 ***************************************/
13
14
15 #include <stdio.h>
16 #include <stdlib.h>
17
18 #include "types.h"
19 #include "nodes.h"
20 #include "segments.h"
21 #include "ways.h"
22 #include "functions.h"
23
24
25 int main(int argc,char** argv)
26 {
27 Nodes *OSMNodes;
28 Segments *OSMSegments;
29 Ways *OSMWays;
30
31 /* Examine the nodes */
32
33 OSMNodes=LoadNodeList("data/nodes.mem");
34
35 printf("Nodes\n");
36 printf("-----\n");
37
38 printf("sizeof(Node)=%9d Bytes\n",sizeof(Node));
39 printf("number =%9d\n",OSMNodes->number);
40
41 /* Examine the segments */
42
43 OSMSegments=LoadSegmentList("data/segments.mem");
44
45 printf("\n");
46 printf("Segments\n");
47 printf("--------\n");
48
49 printf("sizeof(Segment)=%9d Bytes\n",sizeof(Segment));
50 printf("number =%9d\n",OSMSegments->number);
51
52 /* Examine the ways */
53
54 OSMWays=LoadWayList("data/ways.mem");
55
56 printf("\n");
57 printf("Ways\n");
58 printf("----\n");
59
60 printf("sizeof(Way) =%9d Bytes\n",sizeof(Way));
61 printf("number =%9d\n",OSMWays->number);
62
63 return(0);
64 }

Properties

Name Value
cvs:description Test program for mmap files.