#ifndef _SLRN_PRINT_H_
#define _SLRN_PRINT_H_
typedef struct _Slrn_Print_Type Slrn_Print_Type;

extern Slrn_Print_Type *slrn_open_printer (void);
extern int slrn_close_printer (Slrn_Print_Type *);
extern int slrn_write_to_printer (Slrn_Print_Type *, char *, unsigned int);

extern int slrn_print_file (char *);

extern char *Slrn_Printer_Name;

#endif

