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

« back to all changes in this revision

Viewing changes to info/gc.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:
1
1
/* gc.h -- Functions for garbage collecting unused node contents.
2
 
   $Id: gc.h,v 1.2 1997/07/15 18:41:53 karl Exp $
 
2
   $Id: gc.h,v 1.3 2004/04/11 17:56:45 karl Exp $
3
3
 
4
4
   This file is part of GNU Info, a program for reading online documentation
5
5
   stored in Info format.
6
6
 
7
 
   Copyright (C) 1993, 97 Free Software Foundation, Inc.
 
7
   Copyright (C) 1993, 1997, 2004 Free Software Foundation, Inc.
8
8
 
9
9
   This program is free software; you can redistribute it and/or modify
10
10
   it under the terms of the GNU General Public License as published by
28
28
/* Add POINTER to the list of garbage collectible pointers.  A pointer
29
29
   is not actually garbage collected until no info window contains a node
30
30
   whose contents member is equal to the pointer. */
31
 
extern void add_gcable_pointer ();
 
31
extern void add_gcable_pointer (char *pointer);
32
32
 
33
33
/* Grovel the list of info windows and gc-able pointers finding those
34
34
   node->contents which are collectible, and free them. */
35
 
extern void gc_pointers ();
 
35
extern void gc_pointers (void);
36
36
 
37
37
#endif /* not INFO_GC_H */