view asxparser.h @ 6196:f01f6fd93ce8

gcc -dumpversion seems less error prone (tested with 2.95.4 3.0.4 and 3.1) Suggested by Okki <okki666@nerim.net> Added gcc-3.1 and gcc-3.0 in the find-a-sane-compiler loop
author pl
date Sun, 26 May 2002 13:41:08 +0000
parents 35b412015c39
children 487cfc28525d
line wrap: on
line source


#include "playtree.h"

typedef struct _ASX_Parser_t ASX_Parser_t;

typedef struct {
  char* buffer;
  int line;
} ASX_LineSave_t;

struct _ASX_Parser_t {
  int line; // Curent line
  ASX_LineSave_t *ret_stack;
  int ret_stack_size;
  char* last_body;
  int deep;
};