view playtreeparser.h @ 8083:3aee0db04665

Fixed a bug which would prevent proper parsing of floating point options when the locale used has a decimal point other than the dot character ("."). Idea by Aleksander Adamowski <olo at altkom dor com dot pl>.
author rguyom
date Sun, 03 Nov 2002 15:14:31 +0000
parents 4b728967bd77
children 487cfc28525d
line wrap: on
line source


#ifndef __PLAYTREEPARSER_H
#define __PLAYTREEPARSER_H

#include "playtree.h"
#include "libmpdemux/stream.h"

typedef struct play_tree_parser {
  stream_t* stream;
  char *buffer,*iter,*line;
  int buffer_size , buffer_end;
  int deep,keep;
} play_tree_parser_t;


play_tree_parser_t*
play_tree_parser_new(stream_t* stream,int deep);

void
play_tree_parser_free(play_tree_parser_t* p);

play_tree_t*
play_tree_parser_get_play_tree(play_tree_parser_t* p);

#endif