modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / freeglobals
blobe0f76f477d3bf30d44fb35a0f04bc3b2251c4b6d
1 NAME
2     freeglobals - free memory used for values of global variables
4 SYNOPSIS
5     freeglobals()
7 TYPES
8     return      null value
10 DESCRIPTION
11     This function frees the memory used for the values of all global
12     and not unscoped static variables by assigning null values.
13     The oldvalue (.) is not freed by this function.
15 EXAMPLE
16     ; global a = 1, b = list(2,3,4), c = mat[3]
17     ; static a = 2
18     ; show globals
20     Name    Level    Type
21     ----    -----    -----
22     a          1     real = 2
23     a          0     real = 1
24     b          0     list
25     c          0     matrix
27     Number: 4
28     ; freeglobals()
29     ; show globals
31     Name    Level    Type
32     ----    -----    -----
33     a          1     null
34     a          0     null
35     b          0     null
36     c          0     null
38     Number: 4
40 LIMITS
41     none
43 LINK LIBRARY
44     none
46 SEE ALSO
47     free, freestatics, freeredc
49 ## Copyright (C) 1999  Landon Curt Noll
51 ## Calc is open software; you can redistribute it and/or modify it under
52 ## the terms of the version 2.1 of the GNU Lesser General Public License
53 ## as published by the Free Software Foundation.
55 ## Calc is distributed in the hope that it will be useful, but WITHOUT
56 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
57 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
58 ## Public License for more details.
60 ## A copy of version 2.1 of the GNU Lesser General Public License is
61 ## distributed with calc under the filename COPYING-LGPL.  You should have
62 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
63 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
65 ## @(#) $Revision: 30.1 $
66 ## @(#) $Id: freeglobals,v 30.1 2007/03/16 11:10:42 chongo Exp $
67 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/freeglobals,v $
69 ## Under source code control:   1997/09/06 20:03:35
70 ## File existed as early as:    1997
72 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
73 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/