The Machine Perception Toolbox

[Introduction]- [News]- [Download]- [Screenshots]- [Manual (pdf)]- [Forums]- [API Reference]- [Repository ]

 

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

frames.c

Go to the documentation of this file.
00001 /*  
00002  *  (C) Copyright David Abrahams 2001. Permission to copy, use,
00003  *  modify, sell and distribute this software is granted provided this
00004  *  copyright notice appears in all copies. This software is provided
00005  *  "as is" without express or implied warranty, and with no claim as
00006  *  to its suitability for any purpose.
00007  */
00008 
00009 # include "frames.h"
00010 # include "lists.h"
00011 
00012 
00013 void frame_init( FRAME* frame )
00014 {
00015     frame->prev = 0;
00016     lol_init(frame->args);
00017     frame->module = root_module();
00018     frame->rulename = "module scope";
00019     frame->procedure = 0;
00020 }
00021 
00022 void frame_free( FRAME* frame )
00023 {
00024     lol_free( frame->args );
00025 }

Generated on Mon Nov 8 17:07:34 2004 for MPT by  doxygen 1.3.9.1