/****************************************************************************
*
*      Projet  : DilibPro
*      Module  : Sgml
*      Fichier : SgmlInput.h
*      Auteur  : J. Ducloy
*
*      Derniere mise a jour Mai 94
*
*      Interface avec Dam pour les importations sur STDIN
*
****************************************************************************
*
* Copyright (c) 1995 CNRS/CRIN & INRIA Lorraine
* 
****************************************************************************/

#ifndef _SGML_INPUT_H
#define _SGML_INPUT_H

#include "SgmlString.h"
#include "DamFile.h"

extern char     *SgmlInputKey;
extern SgmlNode *SgmlInputDocument;
extern SgmlNode *SgmlInputRecord;

SgmlNode *SgmlInputNextDocument();
SgmlNode *SgmlInputNextRecord();

#define SgmlInputNext() SgmlInputNextRecord()
#define SgmlInputRecordPrint() SgmlPrint(SgmlInputRecord)

#endif /* _SGML_INPUT_H */

