Subversion Repositories public

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
93 andreas 1
#include "config.h"
2
#include <string.h>
3
#include <ctype.h>
4
#include "garmin.h"
5
 
6
/* 
7
   This file contains functions that scan the output of the functions in
8
   print.c, reconstructing Garmin datatypes from the XML output.
9
*/
10
 
11
 
12
static void
13
garmin_scan_attribute ( const char ** cursor, const char * name, char ** val )
14
{
15
 
16
}
17
 
18
 
19
static void
20
garmin_scan_type ( const char ** cursor, uint32 * type )
21
{
22
  *type = 0;
23
 
24
  /* Expect a string 'type="xxx"' */
25
 
26
 
27
}
28
 
29
 
30
static void
31
garmin_scan_position ( )
32
{
33
 
34
}
35
 
36