~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to info/dribble.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
/* This file is part of GNU Info, a program for reading online documentation
4
4
   stored in Info format.
5
5
 
6
 
   Copyright (C) 1993 Free Software Foundation, Inc.
 
6
   Copyright (C) 1993, 2004 Free Software Foundation, Inc.
7
7
 
8
8
   This program is free software; you can redistribute it and/or modify
9
9
   it under the terms of the GNU General Public License as published by
30
30
 
31
31
/* Open a dribble file named NAME, perhaps closing an already open one.
32
32
   This sets the global variable INFO_DRIBBLE_FILE to the open stream. */
33
 
extern void open_dribble_file ();
 
33
extern void open_dribble_file (char *name);
34
34
 
35
35
/* If there is a dribble file already open, close it. */
36
 
extern void close_dribble_file ();
 
36
extern void close_dribble_file (void);
37
37
 
38
38
/* Write some output to our existing dribble file. */
39
 
extern void dribble ();
 
39
extern void dribble (unsigned char byte);
40
40
 
41
41
#endif /* !_DRIBBLE_H_ */