pike.git / src / operators.c

version» Context lines:

pike.git/src/operators.c:1:   /*\   ||| This file a part of Pike, and is copyright by Fredrik Hubinette   ||| Pike is distributed as GPL (General Public License)   ||| See the files COPYING and DISCLAIMER for more information.   \*/   #include <math.h>   #include "global.h" - RCSID("$Id: operators.c,v 1.35 1998/06/06 03:22:15 hubbe Exp $"); + RCSID("$Id: operators.c,v 1.36 1998/06/06 13:05:03 grubba Exp $");   #include "interpret.h"   #include "svalue.h"   #include "multiset.h"   #include "mapping.h"   #include "array.h"   #include "stralloc.h"   #include "opcodes.h"   #include "operators.h"   #include "language.h"   #include "pike_memory.h"
pike.git/src/operators.c:1951:    start_new_program();    add_storage(sizeof(struct string_assignment_storage));    add_function("`[]",f_string_assignment_index,"function(int:int)",0);    add_function("`[]=",f_string_assignment_assign_index,"function(int,int:int)",0);    set_init_callback(init_string_assignment_storage);    set_exit_callback(exit_string_assignment_storage);    string_assignment_program=end_program();   }       - void exit_operators() + void exit_operators(void)   {    if(string_assignment_program)    {    free_program(string_assignment_program);    string_assignment_program=0;    }   }